Previous version which works for my stm32f401 Nucleo board
Fork of X_NUCLEO_IDB0XA1 by
platform/inc/compiler.h@56:20e83a284019, 2014-10-01 (annotated)
- Committer:
- mridup
- Date:
- Wed Oct 01 09:52:26 2014 +0000
- Revision:
- 56:20e83a284019
Foundation for mbed HAL adaptation from STM32 Cube HAL adaptation. Tested on L0 initially.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mridup | 56:20e83a284019 | 1 | /******************** (C) COPYRIGHT 2012 STMicroelectronics ******************** |
mridup | 56:20e83a284019 | 2 | * File Name : compiler.h |
mridup | 56:20e83a284019 | 3 | * Author : AMS - HEA&RF BU |
mridup | 56:20e83a284019 | 4 | * Version : V1.0.0 |
mridup | 56:20e83a284019 | 5 | * Date : 19-July-2012 |
mridup | 56:20e83a284019 | 6 | * Description : Compiler-dependent macros. |
mridup | 56:20e83a284019 | 7 | ******************************************************************************** |
mridup | 56:20e83a284019 | 8 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS |
mridup | 56:20e83a284019 | 9 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME. |
mridup | 56:20e83a284019 | 10 | * AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT, |
mridup | 56:20e83a284019 | 11 | * INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE |
mridup | 56:20e83a284019 | 12 | * CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING |
mridup | 56:20e83a284019 | 13 | * INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. |
mridup | 56:20e83a284019 | 14 | *******************************************************************************/ |
mridup | 56:20e83a284019 | 15 | |
mridup | 56:20e83a284019 | 16 | #ifdef __ICCARM__ |
mridup | 56:20e83a284019 | 17 | #ifndef PACKED |
mridup | 56:20e83a284019 | 18 | #define PACKED |
mridup | 56:20e83a284019 | 19 | #endif |
mridup | 56:20e83a284019 | 20 | #endif |
mridup | 56:20e83a284019 | 21 | |
mridup | 56:20e83a284019 | 22 | #ifdef __GNUC__ |
mridup | 56:20e83a284019 | 23 | #ifndef __packed |
mridup | 56:20e83a284019 | 24 | #define __packed __attribute__((__packed__)) |
mridup | 56:20e83a284019 | 25 | #endif |
mridup | 56:20e83a284019 | 26 | #ifndef PACKED |
mridup | 56:20e83a284019 | 27 | #define PACKED __attribute__((packed)) |
mridup | 56:20e83a284019 | 28 | #endif |
mridup | 56:20e83a284019 | 29 | #endif |
mridup | 56:20e83a284019 | 30 | |
mridup | 56:20e83a284019 | 31 |