Fixed bug #718.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@8996 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
e72bf32197
commit
76692e505d
|
@ -52,7 +52,7 @@ void _unhandled_exception(void) {
|
||||||
|
|
||||||
#if !defined(__DOXYGEN__)
|
#if !defined(__DOXYGEN__)
|
||||||
extern uint32_t __main_stack_end__;
|
extern uint32_t __main_stack_end__;
|
||||||
void Reset_Handler(void) __attribute__((weak, alias("_unhandled_exception")));
|
void Reset_Handler(void);
|
||||||
void NMI_Handler(void) __attribute__((weak, alias("_unhandled_exception")));
|
void NMI_Handler(void) __attribute__((weak, alias("_unhandled_exception")));
|
||||||
void HardFault_Handler(void) __attribute__((weak, alias("_unhandled_exception")));
|
void HardFault_Handler(void) __attribute__((weak, alias("_unhandled_exception")));
|
||||||
void MemManage_Handler(void) __attribute__((weak, alias("_unhandled_exception")));
|
void MemManage_Handler(void) __attribute__((weak, alias("_unhandled_exception")));
|
||||||
|
|
|
@ -77,6 +77,7 @@
|
||||||
- RT: Added RT-STM32L476-DISCOVERY demo.
|
- RT: Added RT-STM32L476-DISCOVERY demo.
|
||||||
- HAL: Added more STM32L4xx testhal demos.
|
- HAL: Added more STM32L4xx testhal demos.
|
||||||
- HAL: Updated all STM32F476 mcuconf.h files.
|
- HAL: Updated all STM32F476 mcuconf.h files.
|
||||||
|
- VAR: Fixed GCC 5.2 crashes while compiling ChibiOS (bug #718).
|
||||||
- HAL: Fixed wrong definition in STM32L4 ext_lld_isr.h (bug #717).
|
- HAL: Fixed wrong definition in STM32L4 ext_lld_isr.h (bug #717).
|
||||||
- HAL: Fixed wrong definitions in STM32F746 mcuconf.h files (bug #716)
|
- HAL: Fixed wrong definitions in STM32F746 mcuconf.h files (bug #716)
|
||||||
- RT: Fixed wrong SysTick initialization in generic demos (bug #715).
|
- RT: Fixed wrong SysTick initialization in generic demos (bug #715).
|
||||||
|
|
Loading…
Reference in New Issue