Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: EEPROMWrite Full-Project
Fork of mbed-src by
targets/hal/TARGET_Silicon_Labs/TARGET_EFM32/TARGET_EFM32HG_STK3400/PeripheralNames.h@636:c140da0be6c8, 2015-11-02 (annotated)
- Committer:
- ptcrews
- Date:
- Mon Nov 02 19:22:36 2015 +0000
- Revision:
- 636:c140da0be6c8
- Parent:
- 627:4fa1328d9c60
Changed serial_api.c for Nucleo L1 boards. Changed define conditionals from USART4 and USART5 to UART4 and UART5.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mbed_official | 627:4fa1328d9c60 | 1 | /***************************************************************************//** |
mbed_official | 627:4fa1328d9c60 | 2 | * @file PeripheralNames.h |
mbed_official | 627:4fa1328d9c60 | 3 | ******************************************************************************* |
mbed_official | 627:4fa1328d9c60 | 4 | * @section License |
mbed_official | 627:4fa1328d9c60 | 5 | * <b>(C) Copyright 2015 Silicon Labs, http://www.silabs.com</b> |
mbed_official | 627:4fa1328d9c60 | 6 | ******************************************************************************* |
mbed_official | 525:c320967f86b9 | 7 | * |
mbed_official | 627:4fa1328d9c60 | 8 | * Permission is granted to anyone to use this software for any purpose, |
mbed_official | 627:4fa1328d9c60 | 9 | * including commercial applications, and to alter it and redistribute it |
mbed_official | 627:4fa1328d9c60 | 10 | * freely, subject to the following restrictions: |
mbed_official | 525:c320967f86b9 | 11 | * |
mbed_official | 627:4fa1328d9c60 | 12 | * 1. The origin of this software must not be misrepresented; you must not |
mbed_official | 627:4fa1328d9c60 | 13 | * claim that you wrote the original software. |
mbed_official | 627:4fa1328d9c60 | 14 | * 2. Altered source versions must be plainly marked as such, and must not be |
mbed_official | 627:4fa1328d9c60 | 15 | * misrepresented as being the original software. |
mbed_official | 627:4fa1328d9c60 | 16 | * 3. This notice may not be removed or altered from any source distribution. |
mbed_official | 525:c320967f86b9 | 17 | * |
mbed_official | 627:4fa1328d9c60 | 18 | * DISCLAIMER OF WARRANTY/LIMITATION OF REMEDIES: Silicon Labs has no |
mbed_official | 627:4fa1328d9c60 | 19 | * obligation to support this Software. Silicon Labs is providing the |
mbed_official | 627:4fa1328d9c60 | 20 | * Software "AS IS", with no express or implied warranties of any kind, |
mbed_official | 627:4fa1328d9c60 | 21 | * including, but not limited to, any implied warranties of merchantability |
mbed_official | 627:4fa1328d9c60 | 22 | * or fitness for any particular purpose or warranties against infringement |
mbed_official | 627:4fa1328d9c60 | 23 | * of any proprietary rights of a third party. |
mbed_official | 627:4fa1328d9c60 | 24 | * |
mbed_official | 627:4fa1328d9c60 | 25 | * Silicon Labs will not be liable for any consequential, incidental, or |
mbed_official | 627:4fa1328d9c60 | 26 | * special damages, or any other relief, or for any claim by any third party, |
mbed_official | 627:4fa1328d9c60 | 27 | * arising from your use of this Software. |
mbed_official | 627:4fa1328d9c60 | 28 | * |
mbed_official | 627:4fa1328d9c60 | 29 | ******************************************************************************/ |
mbed_official | 525:c320967f86b9 | 30 | #ifndef MBED_PERIPHERALNAMES_H |
mbed_official | 525:c320967f86b9 | 31 | #define MBED_PERIPHERALNAMES_H |
mbed_official | 525:c320967f86b9 | 32 | |
mbed_official | 525:c320967f86b9 | 33 | #include "em_adc.h" |
mbed_official | 525:c320967f86b9 | 34 | #include "em_usart.h" |
mbed_official | 525:c320967f86b9 | 35 | |
mbed_official | 525:c320967f86b9 | 36 | #ifdef __cplusplus |
mbed_official | 525:c320967f86b9 | 37 | extern "C" { |
mbed_official | 525:c320967f86b9 | 38 | #endif |
mbed_official | 525:c320967f86b9 | 39 | |
mbed_official | 525:c320967f86b9 | 40 | typedef enum { |
mbed_official | 548:1abac31e188e | 41 | ADC_0 = ADC0_BASE |
mbed_official | 525:c320967f86b9 | 42 | } ADCName; |
mbed_official | 525:c320967f86b9 | 43 | |
mbed_official | 525:c320967f86b9 | 44 | typedef enum { |
mbed_official | 525:c320967f86b9 | 45 | I2C_0 = I2C0_BASE |
mbed_official | 525:c320967f86b9 | 46 | } I2CName; |
mbed_official | 525:c320967f86b9 | 47 | |
mbed_official | 525:c320967f86b9 | 48 | typedef enum { |
mbed_official | 525:c320967f86b9 | 49 | PWM_CH0 = 0, |
mbed_official | 525:c320967f86b9 | 50 | PWM_CH1 = 1, |
mbed_official | 525:c320967f86b9 | 51 | PWM_CH2 = 2, |
mbed_official | 525:c320967f86b9 | 52 | } PWMName; |
mbed_official | 525:c320967f86b9 | 53 | |
mbed_official | 525:c320967f86b9 | 54 | typedef enum { |
mbed_official | 525:c320967f86b9 | 55 | USART_0 = USART0_BASE, |
mbed_official | 525:c320967f86b9 | 56 | USART_1 = USART1_BASE, |
mbed_official | 525:c320967f86b9 | 57 | LEUART_0 = LEUART0_BASE |
mbed_official | 525:c320967f86b9 | 58 | } UARTName; |
mbed_official | 525:c320967f86b9 | 59 | |
mbed_official | 525:c320967f86b9 | 60 | #define STDIO_UART_TX USBTX |
mbed_official | 525:c320967f86b9 | 61 | #define STDIO_UART_RX USBRX |
mbed_official | 525:c320967f86b9 | 62 | #define STDIO_UART USART1 |
mbed_official | 525:c320967f86b9 | 63 | |
mbed_official | 525:c320967f86b9 | 64 | typedef enum { |
mbed_official | 525:c320967f86b9 | 65 | SPI_0 = USART0_BASE, |
mbed_official | 525:c320967f86b9 | 66 | SPI_1 = USART1_BASE |
mbed_official | 525:c320967f86b9 | 67 | } SPIName; |
mbed_official | 525:c320967f86b9 | 68 | |
mbed_official | 525:c320967f86b9 | 69 | #ifdef __cplusplus |
mbed_official | 525:c320967f86b9 | 70 | } |
mbed_official | 525:c320967f86b9 | 71 | #endif |
mbed_official | 525:c320967f86b9 | 72 | |
mbed_official | 525:c320967f86b9 | 73 | #endif |