mbed(SerialHalfDuplex入り)
Fork of mbed by
cmsis.h@15:d1a9de3f4fe0, 2009-11-16 (annotated)
- Committer:
- simon.ford@mbed.co.uk
- Date:
- Mon Nov 16 17:23:08 2009 +0000
- Revision:
- 15:d1a9de3f4fe0
- Parent:
- 11:1c1ebd0324fa
* Update Serial to support primitive interrupt event
* Update some CMSIS-level interrupt functions
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rolf.meyer@arm.com | 11:1c1ebd0324fa | 1 | /* mbed Microcontroller Library - CMSIS |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 2 | * Copyright (C) 2009 ARM Limited. All rights reserved. |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 3 | * |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 4 | * A generic CMSIS include header, pulling in the appropriate |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 5 | * target specific CMSIS files |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 6 | */ |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 7 | |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 8 | #ifndef MBED_CMSIS_H |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 9 | #define MBED_CMSIS_H |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 10 | |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 11 | #if defined(TARGET_LPC1768) |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 12 | #include "LPC17xx.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 13 | #elif defined(TARGET_LPC2368) |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 14 | #include "LPC23xx.h" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 15 | #else |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 16 | #error "CMSIS Target not recognised" |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 17 | #endif |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 18 | |
simon.ford@mbed.co.uk | 15:d1a9de3f4fe0 | 19 | #include "cmsis_nvic.h" |
simon.ford@mbed.co.uk | 15:d1a9de3f4fe0 | 20 | |
rolf.meyer@arm.com | 11:1c1ebd0324fa | 21 | #endif |