NOAA-CSL/NOAA_BBB_PRU_DAQ_Cape

Random structs

Opened this issue · 1 comments

lo-co commented

There are a lot of structs that contain one member. Examples:

struct gUDP
{
    struct UDP udp[6];
} gUDP;
struct gData
{
    struct Peaks peak[30000];
} gData;  
struct gSerial_Ports
{
    struct Serial_Port serial_port[2];
} gSerial_Ports;

Is there a reason that these reside in structs?