sstaub / Ethernet3

Ethernet library for Arduino and Ethernetshield2 / WIZ550io / WIZ850io / USR-ES1 with Wiznet W5500 chip
Other
82 stars 33 forks source link

Datatypes to uint8_t #3

Closed sstaub closed 7 years ago

sstaub commented 7 years ago

All datatypes from arduino API, like char, unsigned char, byte should changed into uint8_t to avoid compiler problems with converting datatypes. Maybe also necessary for int (-> uint16_t, int16_t).

sstaub commented 7 years ago

changed 'unsigned char' to 'uint8_t'