Skip to content

Commit

Permalink
changed u_int8_t to uint8_t
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausMu committed Nov 2, 2024
1 parent 9ea3c03 commit cdcf2c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Platformio/src/guis/gui_BLEpairing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ static void BLEpairing_dropdown_cb(lv_event_t* e) {
uint16_t selected_index = lv_dropdown_get_selected(target);
if (lv_event_get_code(e) == LV_EVENT_VALUE_CHANGED) {
// omote_log_d("BLE pairing: bonded peers dropdown selected index %d\r\n", selected_index);
u_int8_t bufferSize = 20;
uint8_t bufferSize = 20;
char buffer[bufferSize];
lv_dropdown_get_selected_str(target, buffer, bufferSize);
// omote_log_d("BLE pairing: bonded peers dropdown selected value %s\r\n", buffer);
Expand Down

0 comments on commit cdcf2c2

Please sign in to comment.