switch from 0x00 to 0xff to make the compilers work
This commit is contained in:
parent
bb921cd3bd
commit
948780526b
|
|
@ -75,10 +75,11 @@ static int mk_evcsnm(uint8_t *evcsnm_oer, uint32_t *evcsnm_len)
|
||||||
cs_elem0->type.buf = calloc(1, sizeof(uint8_t));
|
cs_elem0->type.buf = calloc(1, sizeof(uint8_t));
|
||||||
cs_elem0->type.size = 1;
|
cs_elem0->type.size = 1;
|
||||||
cs_elem0->type.bits_unused = 0;
|
cs_elem0->type.bits_unused = 0;
|
||||||
cs_elem0->type.buf[0] = 0;
|
cs_elem0->type.buf[0] = 0xff;
|
||||||
cs_elem0->typeOfReceptacle.buf = calloc(1, sizeof(uint8_t));
|
cs_elem0->typeOfReceptacle.buf = calloc(1, sizeof(uint8_t));
|
||||||
cs_elem0->typeOfReceptacle.size = 1;
|
cs_elem0->typeOfReceptacle.size = 1;
|
||||||
cs_elem0->typeOfReceptacle.bits_unused = 0;
|
cs_elem0->typeOfReceptacle.bits_unused = 0;
|
||||||
|
cs_elem0->typeOfReceptacle.buf[0] = 0xff;
|
||||||
itss_space_unlock(epv);
|
itss_space_unlock(epv);
|
||||||
// if (facilities.station_type == StationType_roadSideUnit)
|
// if (facilities.station_type == StationType_roadSideUnit)
|
||||||
//{
|
//{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue