SOES/applications/rtl_lan9252demo/utypes.h

46 lines
523 B
C
Raw Normal View History

#ifndef __UTYPES_H__
#define __UTYPES_H__
2019-04-04 17:48:16 +02:00
#include "cc.h"
/* Object dictionary storage */
typedef struct
{
2019-04-04 17:48:16 +02:00
/* Inputs */
struct
{
uint8_t Button1;
2019-04-04 17:48:16 +02:00
} Buttons;
2019-04-04 17:48:16 +02:00
/* Outputs */
struct
{
uint8_t LED0;
uint8_t LED1;
2019-04-04 17:48:16 +02:00
} LEDs;
2019-04-04 17:48:16 +02:00
/* Parameters */
struct
{
uint32_t Multiplier;
2019-04-04 17:48:16 +02:00
} Parameters;
/* Manufacturer specific data */
/* Dynamic TX PDO:s */
/* Dynamic RX PDO:s */
/* Sync Managers */
} _Objects;
extern _Objects Obj;
#endif /* __UTYPES_H__ */