git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8697 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2016-01-06 11:43:13 +00:00
parent af050e7716
commit a929bb50f4
3 changed files with 3 additions and 14 deletions

View File

@ -120,20 +120,6 @@
#define ARM_ENABLE_WFI_IDLE FALSE #define ARM_ENABLE_WFI_IDLE FALSE
#endif #endif
/**
* @brief Enabled if in the system THUM code is used somewhere.
*/
#if !defined(THUMB_PRESENT)
#define THUMB_PRESENT
#endif
/**
* @brief Enabled if THUMB interworking is not required.
*/
#if !defined(THUMB_NO_INTERWORKING)
#define THUMB_NO_INTERWORKING
#endif
/*===========================================================================*/ /*===========================================================================*/
/* Derived constants and error checks. */ /* Derived constants and error checks. */
/*===========================================================================*/ /*===========================================================================*/

View File

@ -147,6 +147,7 @@
- HAL: Updated STM32F0xx headers to STM32CubeF0 version 1.3.0. Added support - HAL: Updated STM32F0xx headers to STM32CubeF0 version 1.3.0. Added support
for STM32F030xC, STM32F070x6, STM32F070xB, STM32F091xC, for STM32F030xC, STM32F070x6, STM32F070xB, STM32F091xC,
STM32F098xx devices. STM32F098xx devices.
- RT: Fixed ARM port enforcing THUMB mode (bug #687)(backported to 3.0.5).
- HAL: Fixed HAL drivers still calling RT functions (bug #686)(backported - HAL: Fixed HAL drivers still calling RT functions (bug #686)(backported
to 3.0.5). to 3.0.5).
- HAL: Fixed chprintf() still calling RT functions (bug #684)(backported - HAL: Fixed chprintf() still calling RT functions (bug #684)(backported

View File

@ -22,6 +22,7 @@ been back-ported to previous stable branches.
*** What's new in RT 3.1.0 *** *** What's new in RT 3.1.0 ***
- Support for Cortex-M7.
- Added new function chVTGetTimersStateI() returning the state of the - Added new function chVTGetTimersStateI() returning the state of the
timers list. This is useful to assess if it is convenient to transition timers list. This is useful to assess if it is convenient to transition
to lower power modes. to lower power modes.
@ -85,4 +86,5 @@ been back-ported to previous stable branches.
*** What's new in NIL 1.1.0 *** *** What's new in NIL 1.1.0 ***
- Support for Cortex-M7.
- Minor bugs fixed. - Minor bugs fixed.