plus deleted trailing spaces from lines sorry Daniela, my editor trims them automagically
53 lines
1.4 KiB
C
53 lines
1.4 KiB
C
#include "contiki.h"
|
|
#include "net/netstack.h"
|
|
#include "net/nullnet/nullnet.h"
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include "sys/log.h"
|
|
#include "sys/clock.h"
|
|
#include "sys/ctimer.h"
|
|
#include "os/dev/leds.h"
|
|
#include "os/dev/serial-line.h"
|
|
#include "arch/cpu/cc26x0-cc13x0/dev/cc26xx-uart.h"
|
|
|
|
#include "../common/supermarket_net.h"
|
|
|
|
typedef struct cart
|
|
{
|
|
linkaddr_t* cart_address;
|
|
uint8_t battery_status;
|
|
bool assigned;
|
|
uint32_t customer_id;
|
|
struct cart *next;
|
|
}cart;
|
|
|
|
cart* cart_selection();
|
|
bool insert_cart(uint8_t new_req_battery, linkaddr_t* mac_cart_addr);
|
|
bool bat_upgrade(linkaddr_t* src_cart_addr, uint8_t battery_level);
|
|
//static void input_callback(const void* data, uint16_t len, const linkaddr_t* source_address, const linkaddr_t* destination_address);
|
|
//void check(void *ptr);
|
|
|
|
|
|
//-----------------------Definition of the type of messages exchanged between the modules, with their useful informations. The significant fields are discriminated by the msg_type ---------
|
|
|
|
|
|
typedef struct assigner_msg //Message for communications between assigner and carts
|
|
{
|
|
enum message_type msg_type;
|
|
//assoc_req_msg request;
|
|
//assoc_reply_msg reply;
|
|
uint8_t battery_percentage;
|
|
uint32_t customer_id;
|
|
}a_msg;
|
|
|
|
/*
|
|
typedef struct cash_desk_msg
|
|
{
|
|
enum message_type msg_type;
|
|
cash_out_msg cash_out;
|
|
product_msg product;
|
|
basket_msg basket;
|
|
}cd_msg;
|
|
*/
|