File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
libraries/ESP8266WiFiMesh/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ static uint32_t s_cycles_at_yield_start;
6969 */
7070#define ETS_INTR_LOCK_NEST_MAX 7
7171static uint16_t ets_intr_lock_stack[ETS_INTR_LOCK_NEST_MAX];
72- static byte ets_intr_lock_stack_ptr=0 ;
72+ static uint8_t ets_intr_lock_stack_ptr=0 ;
7373
7474
7575extern " C" {
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ using namespace experimental::TypeConversion;
3333
3434namespace MeshTypeConversionFunctions
3535{
36- String uint64ToString (uint64_t number, const byte base)
36+ String uint64ToString (uint64_t number, const uint8_t base)
3737 {
3838 assert (2 <= base && base <= 36 );
3939
@@ -59,7 +59,7 @@ namespace MeshTypeConversionFunctions
5959 return result;
6060 }
6161
62- uint64_t stringToUint64 (const String &string, const byte base)
62+ uint64_t stringToUint64 (const String &string, const uint8_t base)
6363 {
6464 assert (2 <= base && base <= 36 );
6565
You can’t perform that action at this time.
0 commit comments