nrf5/modules/ubluepy: Correcting rssi member in scan_entry object to be int instead of uint.

This commit is contained in:
Glenn Ruben Bakke 2017-03-14 23:18:51 +01:00
parent 442e46f4be
commit 3468972299
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ typedef struct _ubluepy_scan_entry_obj_t {
uint8_t addr[6];
uint8_t addr_type;
bool connectable;
uint8_t rssi;
int8_t rssi;
mp_obj_t data;
} ubluepy_scan_entry_obj_t;