2019-04-12 14:44:20 +00:00
|
|
|
#include "net/netstack.h"
|
|
|
|
#include "net/nullnet/nullnet.h"
|
|
|
|
#include "os/net/linkaddr.h"
|
|
|
|
#include "os/dev/button-hal.h"
|
|
|
|
#include "os/dev/leds.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "sys/log.h"
|
|
|
|
#include "sys/clock.h"
|
|
|
|
#include "contiki.h"
|
|
|
|
|
2019-04-13 07:29:41 +00:00
|
|
|
#include "../common/product.h"
|
|
|
|
#include "../common/supermarket_net.h"
|
|
|
|
|
2019-04-12 14:44:20 +00:00
|
|
|
#define LOG_MODULE "App"
|
|
|
|
#define LOG_LEVEL LOG_LEVEL_INFO
|
|
|
|
|
2019-04-12 15:50:48 +00:00
|
|
|
// !! TO INIT WITH CART MAC ADDRESS !! //
|
2019-04-12 14:44:20 +00:00
|
|
|
static linkaddr_t dest_addr = {{0x00, 0x12, 0x4b, 0x00, 0x0f, 0x82, 0x18, 0x04}};
|
|
|
|
|
|
|
|
|
2019-04-13 07:29:41 +00:00
|
|
|
product_t product_list[] = {
|
|
|
|
{ 1, "21/12/19", 1.05 },
|
|
|
|
{ 2, "12/05/19", 3.25 },
|
|
|
|
{ 3, "05/05/21", 2.50 }
|
2019-04-12 14:44:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
PROCESS(product_proc, "product random generator");
|
|
|
|
AUTOSTART_PROCESSES(&product_proc);
|
|
|
|
|
2019-04-13 07:29:41 +00:00
|
|
|
void scan_product(product_t* p){
|
|
|
|
item_msg m;
|
|
|
|
m.msg_type = ITEM_MSG;
|
|
|
|
memcpy(&m.p, p, sizeof(*p));
|
|
|
|
|
|
|
|
nullnet_buf = (uint8_t*)&m;
|
|
|
|
nullnet_len = sizeof(m);
|
|
|
|
|
2019-04-12 14:44:20 +00:00
|
|
|
NETSTACK_NETWORK.output(&dest_addr);
|
2019-04-13 07:29:41 +00:00
|
|
|
LOG_INFO("Product id [%d] scanned from ", (int)p->product_id);
|
2019-04-12 14:44:20 +00:00
|
|
|
LOG_INFO_LLADDR(&dest_addr);
|
|
|
|
LOG_INFO_("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
PROCESS_THREAD(product_proc, ev, data){
|
|
|
|
PROCESS_BEGIN();
|
|
|
|
// init random number generator
|
2019-04-12 15:50:48 +00:00
|
|
|
unsigned int magic_seed = 12; // oooh :o
|
2019-04-12 14:44:20 +00:00
|
|
|
srand(magic_seed);
|
2019-04-12 15:50:48 +00:00
|
|
|
|
2019-04-12 14:44:20 +00:00
|
|
|
while(1) {
|
|
|
|
PROCESS_YIELD();
|
|
|
|
if (ev == button_hal_press_event){
|
|
|
|
// product generation
|
|
|
|
unsigned int index = rand() % 3;
|
|
|
|
scan_product(&product_list[index]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PROCESS_END();
|
|
|
|
}
|