Changeset 72 in tmcsimulator for branches/fep_client_cpp/network.h


Ignore:
Timestamp:
09/07/2017 01:36:46 PM (9 years ago)
Author:
jtorres
Message:

added lds_data files, we are now dumping fep_reply to ATMS with real data

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/fep_client_cpp/network.h

    r71 r72  
    22#define NETWORK_H 
    33#include <vector> 
     4 
    45using namespace std; 
     6// the first byte is not considered in the calculation of "BYTE 2" 
     7const int Fixed_Byte_To_Checksum = 25; 
     8 
     9const int CONTROL_DATA_LEN = 27; 
     10 
     11char * const dp5[8] = { "ML_1", "ML_2", "ML_3", "ML_4", "ML_5", 
     12                                                "ML_6", "HOV_Lane", "FYW_Conn"}; 
     13char * const dp6[8] = { "OS_1", "OS_2", "OS_3", "OS_4", "OS_5", 
     14                                                "OS_6", "COLL_DIST_2", "COLL_DIST_OFF"}; 
     15char * const dp7[8] = { "DEMAND", "PASSAGE", "QUEUE", "RAMP_ON", 
     16                                                "RAMP_OFF", "RAMP_HOV", "COLL_DIST_1", "COLL_DIST_ON"}; 
     17char * const dp8[8] = { "SD_1", "SD_2", "SD_3", "SD_4", "SD_5", 
     18                                                "SD_6", "Pass_Vol_Count", "X"}; 
     19 
     20 
    521 
    622typedef struct loopagg LOOPAGG; 
Note: See TracChangeset for help on using the changeset viewer.