File tree 2 files changed +3
-3
lines changed
libraries/ESP8266WiFiMesh/src
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;
69
69
*/
70
70
#define ETS_INTR_LOCK_NEST_MAX 7
71
71
static 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 ;
73
73
74
74
75
75
extern " C" {
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ using namespace experimental::TypeConversion;
33
33
34
34
namespace MeshTypeConversionFunctions
35
35
{
36
- String uint64ToString (uint64_t number, const byte base)
36
+ String uint64ToString (uint64_t number, const uint8_t base)
37
37
{
38
38
assert (2 <= base && base <= 36 );
39
39
@@ -59,7 +59,7 @@ namespace MeshTypeConversionFunctions
59
59
return result;
60
60
}
61
61
62
- uint64_t stringToUint64 (const String &string, const byte base)
62
+ uint64_t stringToUint64 (const String &string, const uint8_t base)
63
63
{
64
64
assert (2 <= base && base <= 36 );
65
65
You can’t perform that action at this time.
0 commit comments