MCU driver/HAL for the Picocell Gateway concentrator board. The firmware implements either a USB CDC protocol or a UART protocol to bridge commands coming from host to the SX1308 SPI interface.
src/DebugConfig/Pico_STM32F401RETx.dbgconf@0:c76361bd82e8, 2018-04-11 (annotated)
- Committer:
- dgabino
- Date:
- Wed Apr 11 14:42:47 2018 +0000
- Revision:
- 0:c76361bd82e8
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
dgabino | 0:c76361bd82e8 | 1 | // <<< Use Configuration Wizard in Context Menu >>> |
dgabino | 0:c76361bd82e8 | 2 | |
dgabino | 0:c76361bd82e8 | 3 | // <h>Debug MCU Configuration |
dgabino | 0:c76361bd82e8 | 4 | // <o.0> DBG_SLEEP <i> Debug Sleep Mode |
dgabino | 0:c76361bd82e8 | 5 | // <o.1> DBG_STOP <i> Debug Stop Mode |
dgabino | 0:c76361bd82e8 | 6 | // <o.2> DBG_STANDBY <i> Debug Standby Mode |
dgabino | 0:c76361bd82e8 | 7 | // </h> |
dgabino | 0:c76361bd82e8 | 8 | DbgMCU_CR = 0x00000007; |
dgabino | 0:c76361bd82e8 | 9 | |
dgabino | 0:c76361bd82e8 | 10 | // <h> Debug MCU APB1 Freeze |
dgabino | 0:c76361bd82e8 | 11 | // <o.0> DBG_TIM2_STOP <i> Timer 2 Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 12 | // <o.1> DBG_TIM3_STOP <i> Timer 3 Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 13 | // <o.2> DBG_TIM4_STOP <i> Timer 4 Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 14 | // <o.3> DBG_TIM5_STOP <i> Timer 5 Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 15 | // <o.10> DBG_RTC_STOP <i> RTC Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 16 | // <o.11> DBG_WWDG_STOP <i> Window Watchdog Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 17 | // <o.12> DBG_IWDG_STOP <i> Independent Watchdog Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 18 | // <o.21> DBG_I2C1_SMBUS_TIMEOUT <i> I2C1 SMBUS Timeout Mode Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 19 | // <o.22> DBG_I2C2_SMBUS_TIMEOUT <i> I2C2 SMBUS Timeout Mode Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 20 | // <o.23> DBG_I2C3_SMBUS_TIMEOUT <i> I2C3 SMBUS Timeout Mode Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 21 | // </h> |
dgabino | 0:c76361bd82e8 | 22 | DbgMCU_APB1_Fz = 0x00000000; |
dgabino | 0:c76361bd82e8 | 23 | |
dgabino | 0:c76361bd82e8 | 24 | |
dgabino | 0:c76361bd82e8 | 25 | // <h> Debug MCU APB2 Freeze |
dgabino | 0:c76361bd82e8 | 26 | // <o.0> DBG_TIM1_STOP <i> Timer 1 Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 27 | // <o.16> DBG_TIM9_STOP <i> Timer 9 Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 28 | // <o.17> DBG_TIM10_STOP <i> Timer 10 Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 29 | // <o.18> DBG_TIM11_STOP <i> Timer 11 Stopped when Core is halted |
dgabino | 0:c76361bd82e8 | 30 | // </h> |
dgabino | 0:c76361bd82e8 | 31 | DbgMCU_APB2_Fz = 0x00000000; |
dgabino | 0:c76361bd82e8 | 32 | |
dgabino | 0:c76361bd82e8 | 33 | // <<< end of configuration section >>> |