drivers/kw2xrf: use unsigned char

This commit is contained in:
Benjamin Valentin 2020-07-21 23:05:14 +02:00
parent e3fd43861c
commit a81c0a544c

View File

@ -39,8 +39,8 @@ extern "C" {
#endif #endif
typedef struct overwrites_tag { typedef struct overwrites_tag {
char address; uint8_t address;
char data; uint8_t data;
} overwrites_t; } overwrites_t;