1
0
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:
Dirk O. Kaar
2021-07-26 21:20:45 +02:00
committed by GitHub
parent 8a42163a50
commit bc302511f5
2 changed files with 3 additions and 3 deletions

View File

@ -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" {