mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-16 00:43:00 +03:00
Clean up use of "byte" as a type. uint8_t or (C++17) std::byte are better. (#8090)
This commit is contained in:
@ -69,7 +69,7 @@ static uint32_t s_cycles_at_yield_start;
|
||||
*/
|
||||
#define ETS_INTR_LOCK_NEST_MAX 7
|
||||
static uint16_t ets_intr_lock_stack[ETS_INTR_LOCK_NEST_MAX];
|
||||
static byte ets_intr_lock_stack_ptr=0;
|
||||
static uint8_t ets_intr_lock_stack_ptr=0;
|
||||
|
||||
|
||||
extern "C" {
|
||||
|
Reference in New Issue
Block a user