Merge commit '71bb657e3a7d80edc096094564f5d279e8a1fb69'
* commit '71bb657e3a7d80edc096094564f5d279e8a1fb69': Esp32 iram attr (#26) The merge adds extra STM32 handling Als manually resolved the conflict around the type for lastMicros, to now be: static unsigned int lastMicros = 0; Howefully this does the right thing on each platform
This commit is contained in:
38
NmraDcc.cpp
38
NmraDcc.cpp
@@ -93,7 +93,7 @@
|
|||||||
#define MAX_ONEBITHALF 82
|
#define MAX_ONEBITHALF 82
|
||||||
#define MIN_ONEBITFULL 82
|
#define MIN_ONEBITFULL 82
|
||||||
#define MIN_ONEBITHALF 35
|
#define MIN_ONEBITHALF 35
|
||||||
#define MAX_BITDIFF 18
|
#define MAX_BITDIFF 24
|
||||||
|
|
||||||
|
|
||||||
// Debug-Ports
|
// Debug-Ports
|
||||||
@@ -217,18 +217,12 @@
|
|||||||
#define MODE_TP2
|
#define MODE_TP2
|
||||||
#define SET_TP2
|
#define SET_TP2
|
||||||
#define CLR_TP2
|
#define CLR_TP2
|
||||||
//#define MODE_TP2 DDRC |= (1<<2) // A2
|
|
||||||
//#define SET_TP2 PORTC |= (1<<2)
|
|
||||||
//#define CLR_TP2 PORTC &= ~(1<<2)
|
|
||||||
#define MODE_TP3
|
#define MODE_TP3
|
||||||
#define SET_TP3
|
#define SET_TP3
|
||||||
#define CLR_TP3
|
#define CLR_TP3
|
||||||
#define MODE_TP4
|
#define MODE_TP4
|
||||||
#define SET_TP4
|
#define SET_TP4
|
||||||
#define CLR_TP4
|
#define CLR_TP4
|
||||||
//#define MODE_TP4 DDRC |= (1<<4) //A4
|
|
||||||
//#define SET_TP4 PORTC |= (1<<4)
|
|
||||||
//#define CLR_TP4 PORTC &= ~(1<<4)
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
#ifdef DEBUG_PRINT
|
#ifdef DEBUG_PRINT
|
||||||
@@ -343,9 +337,10 @@ void ExternalInterruptHandler(void)
|
|||||||
// Bit evaluation without Timer 0 ------------------------------
|
// Bit evaluation without Timer 0 ------------------------------
|
||||||
uint8_t DccBitVal;
|
uint8_t DccBitVal;
|
||||||
static int8_t bit1, bit2 ;
|
static int8_t bit1, bit2 ;
|
||||||
static word lastMicros = 0;
|
static unsigned int lastMicros = 0;
|
||||||
static byte halfBit, DCC_IrqRunning;
|
static byte halfBit, DCC_IrqRunning;
|
||||||
unsigned int actMicros, bitMicros;
|
unsigned int actMicros, bitMicros;
|
||||||
|
#ifdef ALLOW_NESTED_IRQ
|
||||||
if ( DCC_IrqRunning ) {
|
if ( DCC_IrqRunning ) {
|
||||||
// nested DCC IRQ - obviously there are glitches
|
// nested DCC IRQ - obviously there are glitches
|
||||||
// ignore this interrupt and increment glitchcounter
|
// ignore this interrupt and increment glitchcounter
|
||||||
@@ -356,6 +351,7 @@ void ExternalInterruptHandler(void)
|
|||||||
SET_TP3;
|
SET_TP3;
|
||||||
return; //>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> abort IRQ
|
return; //>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> abort IRQ
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
SET_TP3;
|
SET_TP3;
|
||||||
actMicros = micros();
|
actMicros = micros();
|
||||||
bitMicros = actMicros-lastMicros;
|
bitMicros = actMicros-lastMicros;
|
||||||
@@ -367,11 +363,12 @@ void ExternalInterruptHandler(void)
|
|||||||
}
|
}
|
||||||
DccBitVal = ( bitMicros < bitMax );
|
DccBitVal = ( bitMicros < bitMax );
|
||||||
lastMicros = actMicros;
|
lastMicros = actMicros;
|
||||||
#ifdef debug
|
|
||||||
if(DccBitVal) {SET_TP2;} else {CLR_TP2;};
|
#ifdef ALLOW_NESTED_IRQ
|
||||||
#endif
|
|
||||||
DCC_IrqRunning = true;
|
DCC_IrqRunning = true;
|
||||||
interrupts(); // time critical is only the micros() command,so allow nested irq's
|
interrupts(); // time critical is only the micros() command,so allow nested irq's
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef DCC_DEBUG
|
#ifdef DCC_DEBUG
|
||||||
DccProcState.TickCount++;
|
DccProcState.TickCount++;
|
||||||
#endif
|
#endif
|
||||||
@@ -432,13 +429,10 @@ void ExternalInterruptHandler(void)
|
|||||||
DccRx.BitCount++;
|
DccRx.BitCount++;
|
||||||
if( abs(bit2-bit1) > MAX_BITDIFF ) {
|
if( abs(bit2-bit1) > MAX_BITDIFF ) {
|
||||||
// the length of the 2 halfbits differ too much -> wrong protokoll
|
// the length of the 2 halfbits differ too much -> wrong protokoll
|
||||||
CLR_TP2;
|
|
||||||
CLR_TP3;
|
|
||||||
DccRx.State = WAIT_PREAMBLE;
|
DccRx.State = WAIT_PREAMBLE;
|
||||||
bitMax = MAX_PRAEAMBEL;
|
bitMax = MAX_PRAEAMBEL;
|
||||||
bitMin = MIN_ONEBITFULL;
|
bitMin = MIN_ONEBITFULL;
|
||||||
DccRx.BitCount = 0;
|
DccRx.BitCount = 0;
|
||||||
SET_TP4;
|
|
||||||
|
|
||||||
#if defined ( __STM32F1__ )
|
#if defined ( __STM32F1__ )
|
||||||
detachInterrupt( DccProcState.ExtIntNum );
|
detachInterrupt( DccProcState.ExtIntNum );
|
||||||
@@ -565,6 +559,7 @@ void ExternalInterruptHandler(void)
|
|||||||
{
|
{
|
||||||
CLR_TP3;
|
CLR_TP3;
|
||||||
DccRx.State = WAIT_PREAMBLE ;
|
DccRx.State = WAIT_PREAMBLE ;
|
||||||
|
DccRx.BitCount = 0 ;
|
||||||
bitMax = MAX_PRAEAMBEL;
|
bitMax = MAX_PRAEAMBEL;
|
||||||
bitMin = MIN_ONEBITFULL;
|
bitMin = MIN_ONEBITFULL;
|
||||||
#ifdef ESP32
|
#ifdef ESP32
|
||||||
@@ -594,9 +589,11 @@ void ExternalInterruptHandler(void)
|
|||||||
DccRx.TempByte = 0 ;
|
DccRx.TempByte = 0 ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#ifdef ALLOW_NESTED_IRQ
|
||||||
|
DCC_IrqRunning = false;
|
||||||
|
#endif
|
||||||
CLR_TP1;
|
CLR_TP1;
|
||||||
CLR_TP3;
|
CLR_TP3;
|
||||||
DCC_IrqRunning = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ackCV(void)
|
void ackCV(void)
|
||||||
@@ -1363,6 +1360,17 @@ void NmraDcc::pin( uint8_t ExtIntNum, uint8_t ExtIntPinNum, uint8_t EnablePullup
|
|||||||
#if defined ( __STM32F1__ )
|
#if defined ( __STM32F1__ )
|
||||||
// with STM32F1 the interuptnumber is equal the pin number
|
// with STM32F1 the interuptnumber is equal the pin number
|
||||||
DccProcState.ExtIntNum = ExtIntPinNum;
|
DccProcState.ExtIntNum = ExtIntPinNum;
|
||||||
|
// because STM32F1 has a NVIC we must set interuptpriorities
|
||||||
|
const nvic_irq_num irqNum2nvic[] = { NVIC_EXTI0, NVIC_EXTI1, NVIC_EXTI2, NVIC_EXTI3, NVIC_EXTI4,
|
||||||
|
NVIC_EXTI_9_5, NVIC_EXTI_9_5, NVIC_EXTI_9_5, NVIC_EXTI_9_5, NVIC_EXTI_9_5,
|
||||||
|
NVIC_EXTI_15_10, NVIC_EXTI_15_10, NVIC_EXTI_15_10, NVIC_EXTI_15_10, NVIC_EXTI_15_10, NVIC_EXTI_15_10 };
|
||||||
|
exti_num irqNum = (exti_num)(PIN_MAP[ExtIntPinNum].gpio_bit);
|
||||||
|
|
||||||
|
// DCC-Input IRQ must be able to interrupt other long low priority ( level15 ) IRQ's
|
||||||
|
nvic_irq_set_priority ( irqNum2nvic[irqNum], PRIO_DCC_IRQ);
|
||||||
|
|
||||||
|
// Systic must be able to interrupt DCC-IRQ to always get correct micros() values
|
||||||
|
nvic_irq_set_priority(NVIC_SYSTICK, PRIO_SYSTIC);
|
||||||
#else
|
#else
|
||||||
DccProcState.ExtIntNum = ExtIntNum;
|
DccProcState.ExtIntNum = ExtIntNum;
|
||||||
#endif
|
#endif
|
||||||
|
@@ -53,6 +53,8 @@
|
|||||||
|
|
||||||
#define MAX_DCC_MESSAGE_LEN 6 // including XOR-Byte
|
#define MAX_DCC_MESSAGE_LEN 6 // including XOR-Byte
|
||||||
|
|
||||||
|
//#define ALLOW_NESTED_IRQ // uncomment to enable nested IRQ's ( only for AVR! )
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
uint8_t Size ;
|
uint8_t Size ;
|
||||||
@@ -105,6 +107,9 @@ typedef struct
|
|||||||
#elif defined( __STM32F1__)
|
#elif defined( __STM32F1__)
|
||||||
#define MAXCV (EEPROM_PAGE_SIZE/4 - 1) // number of storage places (CV address could be larger
|
#define MAXCV (EEPROM_PAGE_SIZE/4 - 1) // number of storage places (CV address could be larger
|
||||||
// because STM32 uses virtual adresses)
|
// because STM32 uses virtual adresses)
|
||||||
|
#undef ALLOW_NESTED_IRQ // This is done with NVIC on STM32
|
||||||
|
#define PRIO_DCC_IRQ 9
|
||||||
|
#define PRIO_SYSTIC 8 // MUST be higher priority than DCC Irq
|
||||||
#else
|
#else
|
||||||
#define MAXCV E2END // the upper limit of the CV value currently defined to max memory.
|
#define MAXCV E2END // the upper limit of the CV value currently defined to max memory.
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user