Procházet zdrojové kódy

Add dummy EIMSK in avr_emulation, undo avr/sleep.h workaround

teensy4-core
PaulStoffregen před 10 roky
rodič
revize
17c876a5c9
3 změnil soubory, kde provedl 8 přidání a 3 odebrání
  1. +4
    -3
      teensy3/avr/sleep.h
  2. +1
    -0
      teensy3/avr_emulation.cpp
  3. +3
    -0
      teensy3/avr_emulation.h

+ 4
- 3
teensy3/avr/sleep.h Zobrazit soubor

@@ -16,8 +16,9 @@
#define sleep_mode() sleep_cpu()

// workaround for early versions of Nordic's BLE library
#if defined(HAL_ACI_TL_H__) && defined(PLATFORM_H__)
#define EIMSK uint8_t EIMSKworkaround=0; EIMSKworkaround
#endif
// EIMSK moved to a dummy byte in avr_emulation...
//#if defined(HAL_ACI_TL_H__) && defined(PLATFORM_H__)
//#define EIMSK uint8_t EIMSKworkaround=0; EIMSKworkaround
//#endif

#endif

+ 1
- 0
teensy3/avr_emulation.cpp Zobrazit soubor

@@ -41,5 +41,6 @@ volatile uint8_t * SPIFIFOclass::reg = 0;

#endif

uint8_t EIMSK = 0;



+ 3
- 0
teensy3/avr_emulation.h Zobrazit soubor

@@ -1141,6 +1141,9 @@ public:
};
extern SREGemulation SREG;


extern uint8_t EIMSK;

// these are not intended for public consumption...
#undef GPIO_BITBAND_ADDR
#undef GPIO_BITBAND

Načítá se…
Zrušit
Uložit