mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-02 00:09:36 +00:00
16 lines
353 B
C
16 lines
353 B
C
#include "collect-view.h"
|
|
|
|
enum {
|
|
SENSOR1,
|
|
SENSOR2,
|
|
};
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
void
|
|
collect_view_arch_read_sensors(struct collect_view_data_msg *msg)
|
|
{
|
|
msg->sensors[SENSOR1] = 0;
|
|
msg->sensors[SENSOR2] = 0;
|
|
}
|
|
/*---------------------------------------------------------------------------*/
|