Migrating from 2.8.6 to 3.3.7 issues

Topics for the Eclipse Environment
Post Reply
ojmaster
Posts: 1
Joined: Tue Jun 14, 2022 7:29 am

Migrating from 2.8.6 to 3.3.7 issues

Post by ojmaster »

As the title suggests, I am having issues with alot of missing unsigned char such as BYTES and WORD, is there a replacement for these?
User avatar
TomNB
Posts: 604
Joined: Tue May 10, 2016 8:22 am

Re: Migrating from 2.8.6 to 3.3.7 issues

Post by TomNB »

Yes. While it was normal in the early 2000''s to use BYTE, WORD, DWORD, as of 10 years ago so so standard practice is to use "int_" or "uint_" for example uint8_t, uint16_t, uint32_t
maxpower
Posts: 10
Joined: Wed Jun 16, 2010 8:14 am

Re: Migrating from 2.8.6 to 3.3.7 issues

Post by maxpower »

The include basictypes.h has the "new" way of doing things. (At least in my environment.)
Post Reply