git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@717 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2009-02-04 20:52:54 +00:00
parent 37f18c5818
commit 28c01b8704
15 changed files with 87 additions and 34 deletions

View File

@ -18,6 +18,8 @@
*/
/**
* @file ports/ARM7/chcore.c
* @brief ARM7 architecture port code.
* @addtogroup ARM7_CORE
* @{
*/

View File

@ -18,6 +18,8 @@
*/
/**
* @file ports/ARM7/chcore.h
* @brief ARM7 architecture port macros and structures.
* @addtogroup ARM7_CORE
* @{
*/

View File

@ -17,8 +17,11 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* ARM7 port system code.
/**
* @file ports/ARM7/chcoreasm.s
* @brief ARM7 architecture port low level code.
* @addtogroup ARM7_CORE
* @{
*/
#include <chconf.h>
@ -225,3 +228,5 @@ _port_thread_start:
jmpr4:
bx r4
#endif /* !THUMB_NO_INTERWORKING */
/** @} */

View File

@ -18,6 +18,8 @@
*/
/**
* @file ports/ARM7/chtypes.h
* @brief ARM7 architecture port system types.
* @addtogroup ARM7_CORE
* @{
*/

View File

@ -17,8 +17,11 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Generic ARM7 startup file for ChibiOS/RT.
/**
* @file ports/ARM7/crt0.s
* @brief Generic ARM7 startup file for ChibiOS/RT.
* @addtogroup ARM7_CORE
* @{
*/
.set MODE_USR, 0x10
@ -189,3 +192,5 @@ hwinit0:
.thumb_func
hwinit1:
bx lr
/** @} */

View File

@ -18,6 +18,8 @@
*/
/**
* @file ports/ARMCM3/chcore.c
* @brief ARM Cortex-M3 architecture port code.
* @addtogroup ARMCM3_CORE
* @{
*/

View File

@ -18,6 +18,8 @@
*/
/**
* @file ports/ARMCM3/chcore.h
* @brief ARM Cortex-M3 architecture port macros and structures.
* @addtogroup ARMCM3_CORE
* @{
*/

View File

@ -17,6 +17,13 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @file ports/ARMCM3/chtypes.h
* @brief ARM Cortex-M3 architecture port system types.
* @addtogroup ARMCM3_CORE
* @{
*/
#ifndef _CHTYPES_H_
#define _CHTYPES_H_
@ -29,15 +36,15 @@
#include <stdint.h>
#endif
typedef int32_t bool_t;
typedef uint8_t tmode_t;
typedef uint8_t tstate_t;
typedef uint32_t tprio_t;
typedef int32_t msg_t;
typedef int32_t eventid_t;
typedef uint32_t eventmask_t;
typedef uint32_t systime_t;
typedef int32_t cnt_t;
typedef int32_t bool_t; /**< Fast boolean type. */
typedef uint8_t tmode_t; /**< Thread flags. */
typedef uint8_t tstate_t; /**< Thread state. */
typedef uint32_t tprio_t; /**< Thread priority. */
typedef int32_t msg_t; /**< Inter-thread message. */
typedef int32_t eventid_t; /**< Event Id. */
typedef uint32_t eventmask_t; /**< Events mask. */
typedef uint32_t systime_t; /**< System time. */
typedef int32_t cnt_t; /**< Resources counter. */
#define INLINE inline
#define PACK_STRUCT_STRUCT __attribute__((packed))
@ -45,3 +52,5 @@ typedef int32_t cnt_t;
#define PACK_STRUCT_END
#endif /* _CHTYPES_H_ */
/** @} */

View File

@ -17,8 +17,11 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Generic ARM-CortexM3 startup file for ChibiOS/RT.
/**
* @file ports/ARMCM3/crt0.s
* @brief Generic ARM Xortex-M3 startup file for ChibiOS/RT.
* @addtogroup ARMCM3_CORE
* @{
*/
.set CONTROL_MODE_PRIVILEGED, 0
@ -111,3 +114,5 @@ hwinit0:
.weak hwinit1
hwinit1:
bx lr
/** @} */

View File

@ -18,6 +18,8 @@
*/
/**
* @file ports/AVR/chcore.c
* @brief AVR architecture port code.
* @addtogroup AVR_CORE
* @{
*/

View File

@ -18,6 +18,8 @@
*/
/**
* @file ports/AVR/chcore.h
* @brief AVR architecture port macros and structures.
* @addtogroup AVR_CORE
* @{
*/

View File

@ -17,6 +17,13 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @file ports/AVR/chtypes.h
* @brief AVR architecture port system types.
* @addtogroup AVR_CORE
* @{
*/
#ifndef _CHTYPES_H_
#define _CHTYPES_H_
@ -29,15 +36,15 @@
#include <stdint.h>
#endif
typedef int8_t bool_t;
typedef uint8_t tmode_t;
typedef uint8_t tstate_t;
typedef uint8_t tprio_t;
typedef int16_t msg_t;
typedef uint8_t eventid_t;
typedef uint8_t eventmask_t;
typedef uint16_t systime_t;
typedef int8_t cnt_t;
typedef int8_t bool_t; /**< Fast boolean type. */
typedef uint8_t tmode_t; /**< Thread flags. */
typedef uint8_t tstate_t; /**< Thread state. */
typedef uint8_t tprio_t; /**< Thread priority. */
typedef int16_t msg_t; /**< Inter-thread message. */
typedef uint8_t eventid_t; /**< Event Id. */
typedef uint8_t eventmask_t; /**< Events mask. */
typedef uint16_t systime_t; /**< System time. */
typedef int8_t cnt_t; /**< Resources counter. */
#define INLINE inline
#define PACK_STRUCT_STRUCT __attribute__((packed))
@ -45,3 +52,5 @@ typedef int8_t cnt_t;
#define PACK_STRUCT_END
#endif /* _CHTYPES_H_ */
/** @} */

View File

@ -18,6 +18,8 @@
*/
/**
* @file ports/MSP430/chcore.c
* @brief MSP430 architecture port code.
* @addtogroup MSP430_CORE
* @{
*/

View File

@ -18,6 +18,8 @@
*/
/**
* @file ports/MSP430/chcore.h
* @brief MSP430 architecture port macros and structures.
* @addtogroup MSP430_CORE
* @{
*/

View File

@ -18,7 +18,9 @@
*/
/**
* @addtogroup Core
* @file ports/MSP430/chtypes.h
* @brief MSP430 architecture port system types.
* @addtogroup MSP430_CORE
* @{
*/
@ -34,15 +36,15 @@
#include <stdint.h>
#endif
typedef int16_t bool_t; /* Signed boolean. */
typedef uint8_t tmode_t; /* Thread mode flags, uint8_t is ok. */
typedef uint8_t tstate_t; /* Thread state, uint8_t is ok. */
typedef uint16_t tprio_t; /* Priority, use the fastest unsigned type. */
typedef int16_t msg_t; /* Message, use signed pointer equivalent.*/
typedef int16_t eventid_t; /* Event Id, use fastest signed.*/
typedef uint16_t eventmask_t;/* Event Mask, recommended fastest unsigned.*/
typedef uint16_t systime_t; /* System Time, recommended fastest unsigned.*/
typedef int16_t cnt_t; /* Counter, recommended fastest signed.*/
typedef int16_t bool_t; /**< Fast boolean type. */
typedef uint8_t tmode_t; /**< Thread flags. */
typedef uint8_t tstate_t; /**< Thread state. */
typedef uint16_t tprio_t; /**< Thread priority. */
typedef int16_t msg_t; /**< Inter-thread message. */
typedef int16_t eventid_t; /**< Event Id. */
typedef uint16_t eventmask_t; /**< Events mask. */
typedef uint16_t systime_t; /**< System time. */
typedef int16_t cnt_t; /**< Resources counter. */
#define INLINE inline
#define PACK_STRUCT_STRUCT __attribute__((packed))