diff options
Diffstat (limited to 'wirish/boards')
| -rw-r--r-- | wirish/boards/maple.cpp | 94 | ||||
| -rw-r--r-- | wirish/boards/maple.h | 59 | ||||
| -rw-r--r-- | wirish/boards/maple_RET6.cpp | 88 | ||||
| -rw-r--r-- | wirish/boards/maple_RET6.h | 61 | ||||
| -rw-r--r-- | wirish/boards/maple_mini.cpp | 87 | ||||
| -rw-r--r-- | wirish/boards/maple_mini.h | 60 | ||||
| -rw-r--r-- | wirish/boards/maple_native.cpp | 155 | ||||
| -rw-r--r-- | wirish/boards/maple_native.h | 64 | 
8 files changed, 668 insertions, 0 deletions
diff --git a/wirish/boards/maple.cpp b/wirish/boards/maple.cpp new file mode 100644 index 0000000..cebd222 --- /dev/null +++ b/wirish/boards/maple.cpp @@ -0,0 +1,94 @@ +/****************************************************************************** + * The MIT License + * + * Copyright (c) 2011 LeafLabs, LLC. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + *****************************************************************************/ + +/** + * @file   maple.cpp + * @author Marti Bolivar <mbolivar@leaflabs.com> + * @brief  Maple PIN_MAP and boardInit(). + */ + +#include "gpio.h" +#include "timer.h" + +#include "maple.h" + +#ifdef BOARD_maple + +void boardInit(void) { +} + +stm32_pin_info PIN_MAP[NR_GPIO_PINS] = { + +    /* Top header */ + +    {GPIOA, TIMER2,  3, 4,    3}, /* D0/PA3 */ +    {GPIOA, TIMER2,  2, 3,    2}, /* D1/PA2 */ +    {GPIOA, TIMER2,  0, 1,    0}, /* D2/PA0 */ +    {GPIOA, TIMER2,  1, 2,    1}, /* D3/PA1 */ +    {GPIOB,   NULL,  5, 0, ADCx}, /* D4/PB5 */ +    {GPIOB, TIMER4,  6, 1, ADCx}, /* D5/PB6 */ +    {GPIOA, TIMER1,  8, 1, ADCx}, /* D6/PA8 */ +    {GPIOA, TIMER1,  9, 2, ADCx}, /* D7/PA9 */ +    {GPIOA, TIMER1, 10, 3, ADCx}, /* D8/PA10 */ +    {GPIOB, TIMER4,  7, 2, ADCx}, /* D9/PB7 */ +    {GPIOA,   NULL,  4, 0,    4}, /* D10/PA4 */ +    {GPIOA, TIMER3,  7, 2,    7}, /* D11/PA7 */ +    {GPIOA, TIMER3,  6, 1,    6}, /* D12/PA6 */ +    {GPIOA,   NULL,  5, 0,    5}, /* D13/PA5 (LED) */ +    {GPIOB, TIMER4,  8, 3, ADCx}, /* D14/PB8 */ + +    /* Little header */ + +    {GPIOC,   NULL,  0, 0,   10}, /* D15/PC0 */ +    {GPIOC,   NULL,  1, 0,   11}, /* D16/PC1 */ +    {GPIOC,   NULL,  2, 0,   12}, /* D17/PC2 */ +    {GPIOC,   NULL,  3, 0,   13}, /* D18/PC3 */ +    {GPIOC,   NULL,  4, 0,   14}, /* D19/PC4 */ +    {GPIOC,   NULL,  5, 0,   15}, /* D20/PC5 */ + +    /* External header */ + +    {GPIOC,   NULL, 13, 0, ADCx}, /* D21/PC13 */ +    {GPIOC,   NULL, 14, 0, ADCx}, /* D22/PC14 */ +    {GPIOC,   NULL, 15, 0, ADCx}, /* D23/PC15 */ +    {GPIOB, TIMER4,  9, 4, ADCx}, /* D24/PB9 */ +    {GPIOD,   NULL,  2, 0, ADCx}, /* D25/PD2 */ +    {GPIOC,   NULL, 10, 0, ADCx}, /* D26/PC10 */ +    {GPIOB, TIMER3,  0, 3,    8}, /* D27/PB0 */ +    {GPIOB, TIMER3,  1, 4,    9}, /* D28/PB1 */ +    {GPIOB,   NULL, 10, 0, ADCx}, /* D29/PB10 */ +    {GPIOB,   NULL, 11, 0, ADCx}, /* D30/PB11 */ +    {GPIOB,   NULL, 12, 0, ADCx}, /* D31/PB12 */ +    {GPIOB,   NULL, 13, 0, ADCx}, /* D32/PB13 */ +    {GPIOB,   NULL, 14, 0, ADCx}, /* D33/PB14 */ +    {GPIOB,   NULL, 15, 0, ADCx}, /* D34/PB15 */ +    {GPIOC,   NULL,  6, 0, ADCx}, /* D35/PC6 */ +    {GPIOC,   NULL,  7, 0, ADCx}, /* D36/PC7 */ +    {GPIOC,   NULL,  8, 0, ADCx}, /* D37/PC8 */ +    {GPIOC,   NULL,  9, 0, ADCx}  /* D38/PC9 (BUT) */ +}; + +#endif diff --git a/wirish/boards/maple.h b/wirish/boards/maple.h new file mode 100644 index 0000000..519698b --- /dev/null +++ b/wirish/boards/maple.h @@ -0,0 +1,59 @@ +/****************************************************************************** + * The MIT License + * + * Copyright (c) 2011 LeafLabs, LLC. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + *****************************************************************************/ + +/** + * @file   maple.h + * @author Marti Bolivar <mbolivar@leaflabs.com> + * @brief  Private include file for Maple in boards.h + */ + +#include "wirish_types.h" + +#ifndef _BOARD_MAPLE_H_ +#define _BOARD_MAPLE_H_ + +#define CYCLES_PER_MICROSECOND  72 +#define SYSTICK_RELOAD_VAL      71999 /* takes a cycle to reload */ + +#define BOARD_BUTTON_PIN        38 +#define BOARD_LED_PIN           13 + +/* Number of USARTs/UARTs whose pins are broken out to headers */ +#define NR_USARTS               3 + +/* Default USART pin numbers (not considering AFIO remap) */ +#define BOARD_USART1_TX_PIN     7 +#define BOARD_USART1_RX_PIN     8 +#define BOARD_USART2_TX_PIN     1 +#define BOARD_USART2_RX_PIN     0 +#define BOARD_USART3_TX_PIN     29 +#define BOARD_USART3_RX_PIN     30 + +/* Total number of GPIO pins that are broken out to headers and +   intended for general use. */ +#define NR_GPIO_PINS            39 + +#endif diff --git a/wirish/boards/maple_RET6.cpp b/wirish/boards/maple_RET6.cpp new file mode 100644 index 0000000..ae31ce3 --- /dev/null +++ b/wirish/boards/maple_RET6.cpp @@ -0,0 +1,88 @@ +/****************************************************************************** + * The MIT License + * + * Copyright (c) 2011 LeafLabs, LLC. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + *****************************************************************************/ + +/** + * @file   maple_RET6.cpp + * @author Marti Bolivar <mbolivar@leaflabs.com> + * @brief  Maple RET6 Edition PIN_MAP and boardInit() + */ + +#include "maple_RET6.h" + +#ifdef BOARD_maple_RET6 + +void boardInit(void) { +} + +stm32_pin_info PIN_MAP[NR_GPIO_PINS] = { +    {GPIOA, TIMER2,  3, 4,    3}, /* D0/PA3 */ +    {GPIOA, TIMER2,  2, 3,    2}, /* D1/PA2 */ +    {GPIOA, TIMER2,  0, 1,    0}, /* D2/PA0 */ +    {GPIOA, TIMER2,  1, 2,    1}, /* D3/PA1 */ +    {GPIOB,   NULL,  5, 0, ADCx}, /* D4/PB5 */ +    {GPIOB, TIMER4,  6, 1, ADCx}, /* D5/PB6 */ +    {GPIOA, TIMER1,  8, 1, ADCx}, /* D6/PA8 */ +    {GPIOA, TIMER1,  9, 2, ADCx}, /* D7/PA9 */ +    {GPIOA, TIMER1, 10, 3, ADCx}, /* D8/PA10 */ +    {GPIOB, TIMER4,  7, 2, ADCx}, /* D9/PB7 */ +    {GPIOA,   NULL,  4, 0,    4}, /* D10/PA4 */ +    {GPIOA, TIMER3,  7, 2,    7}, /* D11/PA7 */ +    {GPIOA, TIMER3,  6, 1,    6}, /* D12/PA6 */ +    {GPIOA,   NULL,  5, 0,    5}, /* D13/PA5 (LED) */ +    {GPIOB, TIMER4,  8, 3, ADCx}, /* D14/PB8 */ + +    /* Little header */ + +    {GPIOC,   NULL,  0, 0,   10}, /* D15/PC0 */ +    {GPIOC,   NULL,  1, 0,   11}, /* D16/PC1 */ +    {GPIOC,   NULL,  2, 0,   12}, /* D17/PC2 */ +    {GPIOC,   NULL,  3, 0,   13}, /* D18/PC3 */ +    {GPIOC,   NULL,  4, 0,   14}, /* D19/PC4 */ +    {GPIOC,   NULL,  5, 0,   15}, /* D20/PC5 */ + +    /* External header */ + +    {GPIOC,   NULL, 13, 0, ADCx}, /* D21/PC13 */ +    {GPIOC,   NULL, 14, 0, ADCx}, /* D22/PC14 */ +    {GPIOC,   NULL, 15, 0, ADCx}, /* D23/PC15 */ +    {GPIOB, TIMER4,  9, 4, ADCx}, /* D24/PB9 */ +    {GPIOD,   NULL,  2, 0, ADCx}, /* D25/PD2 */ +    {GPIOC,   NULL, 10, 0, ADCx}, /* D26/PC10 */ +    {GPIOB, TIMER3,  0, 3,    8}, /* D27/PB0 */ +    {GPIOB, TIMER3,  1, 4,    9}, /* D28/PB1 */ +    {GPIOB,   NULL, 10, 0, ADCx}, /* D29/PB10 */ +    {GPIOB,   NULL, 11, 0, ADCx}, /* D30/PB11 */ +    {GPIOB,   NULL, 12, 0, ADCx}, /* D31/PB12 */ +    {GPIOB,   NULL, 13, 0, ADCx}, /* D32/PB13 */ +    {GPIOB,   NULL, 14, 0, ADCx}, /* D33/PB14 */ +    {GPIOB,   NULL, 15, 0, ADCx}, /* D34/PB15 */ +    {GPIOC, TIMER8,  6, 1, ADCx}, /* D35/PC6 */ +    {GPIOC, TIMER8,  7, 2, ADCx}, /* D36/PC7 */ +    {GPIOC, TIMER8,  8, 3, ADCx}, /* D37/PC8 */ +    {GPIOC, TIMER8,  9, 4, ADCx}  /* D38/PC9 (BUT) */ +}; + +#endif diff --git a/wirish/boards/maple_RET6.h b/wirish/boards/maple_RET6.h new file mode 100644 index 0000000..63510c0 --- /dev/null +++ b/wirish/boards/maple_RET6.h @@ -0,0 +1,61 @@ +/****************************************************************************** + * The MIT License + * + * Copyright (c) 2011 LeafLabs, LLC. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + *****************************************************************************/ + +/** + * @file   maple_RET6.h + * @author Marti Bolivar <mbolivar@leaflabs.com> + * @brief  Private include file for Maple RET6 Edition in boards.h + * + * See maple.h for more information on these definitions. + */ + +#include "gpio.h" +#include "timer.h" + +#include "wirish_types.h" + +#ifndef _BOARDS_MAPLE_RET6_H_ +#define _BOARDS_MAPLE_RET6_H_ + +#define CYCLES_PER_MICROSECOND  72 +#define SYSTICK_RELOAD_VAL      71999 /* takes a cycle to reload */ + +#define BOARD_BUTTON_PIN        38 +#define BOARD_LED_PIN           13 + +/* Note: UART4 and UART5 have pins which aren't broken out :( */ +#define NR_USARTS               3 + +#define BOARD_USART1_TX_PIN     7 +#define BOARD_USART1_RX_PIN     8 +#define BOARD_USART2_TX_PIN     1 +#define BOARD_USART2_RX_PIN     0 +#define BOARD_USART3_TX_PIN     29 +#define BOARD_USART3_RX_PIN     30 + +#define NR_GPIO_PINS            39 + +#endif diff --git a/wirish/boards/maple_mini.cpp b/wirish/boards/maple_mini.cpp new file mode 100644 index 0000000..8c005cf --- /dev/null +++ b/wirish/boards/maple_mini.cpp @@ -0,0 +1,87 @@ +/****************************************************************************** + * The MIT License + * + * Copyright (c) 2011 LeafLabs, LLC. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + *****************************************************************************/ + +/** + * @file   maple_mini.cpp + * @author Marti Bolivar <mbolivar@leaflabs.com> + * @brief  Maple Mini PIN_MAP and boardInit(). + */ + +#include "maple_mini.h" +#include "gpio.h" + +#ifdef BOARD_maple_mini + +/* Since we want the Serial Wire/JTAG pins as GPIOs, disable both SW + * and JTAG debug support */ +void boardInit(void) { +    afio_mapr_swj_config(AFIO_MAPR_SWJ_NO_JTAG_NO_SW); +} + +stm32_pin_info PIN_MAP[NR_GPIO_PINS] = { + +    /* Top header */ + +    {GPIOB,   NULL, 11, 0, ADCx}, /* D0/PB11 */ +    {GPIOB,   NULL, 10, 0, ADCx}, /* D1/PB10 */ +    {GPIOB,   NULL,  2, 0, ADCx}, /* D2/PB2 */ +    {GPIOB, TIMER3,  0, 3,    8}, /* D3/PB0 */ +    {GPIOA, TIMER3,  7, 2,    7}, /* D4/PA7 */ +    {GPIOA, TIMER3,  6, 1,    6}, /* D5/PA6 */ +    {GPIOA,   NULL,  5, 0,    5}, /* D6/PA5 */ +    {GPIOA,   NULL,  4, 0,    4}, /* D7/PA4 */ +    {GPIOA, TIMER2,  3, 4,    3}, /* D8/PA3 */ +    {GPIOA, TIMER2,  2, 3,    2}, /* D9/PA2 */ +    {GPIOA, TIMER2,  1, 2,    1}, /* D10/PA1 */ +    {GPIOA, TIMER2,  0, 1,    0}, /* D11/PA0 */ +    {GPIOC,   NULL, 15, 0, ADCx}, /* D12/PC15 */ +    {GPIOC,   NULL, 14, 0, ADCx}, /* D13/PC14 */ +    {GPIOC,   NULL, 13, 0, ADCx}, /* D14/PC13 */ + +    /* Bottom header */ + +    {GPIOB, TIMER4,  7, 2, ADCx}, /* D15/PB7 */ +    {GPIOB, TIMER4,  6, 1, ADCx}, /* D16/PB6 */ +    {GPIOB,   NULL,  5, 0, ADCx}, /* D17/PB5 */ +    {GPIOB,   NULL,  4, 0, ADCx}, /* D18/PB4 */ +    {GPIOB,   NULL,  3, 0, ADCx}, /* D19/PB3 */ +    {GPIOA,   NULL, 15, 0, ADCx}, /* D20/PA15 */ +    {GPIOA,   NULL, 14, 0, ADCx}, /* D21/PA14 */ +    {GPIOA,   NULL, 13, 0, ADCx}, /* D22/PA13 */ +    {GPIOA,   NULL, 12, 0, ADCx}, /* D23/PA12 */ +    {GPIOA, TIMER1, 11, 4, ADCx}, /* D24/PA11 */ +    {GPIOA, TIMER1, 10, 3, ADCx}, /* D25/PA10 */ +    {GPIOA, TIMER2,  9, 2, ADCx}, /* D26/PA9 */ +    {GPIOA, TIMER1,  8, 1, ADCx}, /* D27/PA8 */ +    {GPIOB,   NULL, 15, 0, ADCx}, /* D28/PB15 */ +    {GPIOB,   NULL, 14, 0, ADCx}, /* D29/PB14 */ +    {GPIOB,   NULL, 13, 0, ADCx}, /* D30/PB13 */ +    {GPIOB,   NULL, 12, 0, ADCx}, /* D31/PB12 */ +    {GPIOB, TIMER4,  8, 3, ADCx}, /* D32/PB8 */ +    {GPIOB, TIMER3,  1, 4,    9}, /* D33/PB1 */ +}; + +#endif diff --git a/wirish/boards/maple_mini.h b/wirish/boards/maple_mini.h new file mode 100644 index 0000000..bfb92a5 --- /dev/null +++ b/wirish/boards/maple_mini.h @@ -0,0 +1,60 @@ +/****************************************************************************** + * The MIT License + * + * Copyright (c) 2011 LeafLabs, LLC. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + *****************************************************************************/ + +/** + * @file   maple_mini.h + * @author Marti Bolivar <mbolivar@leaflabs.com> + * @brief  Private include file for Maple Mini in boards.h + * + * See maple.h for more information on these definitions. + */ + +#include "gpio.h" +#include "timer.h" + +#include "wirish_types.h" + +#ifndef _BOARD_MAPLE_MINI_H_ +#define _BOARD_MAPLE_MINI_H_ + +#define CYCLES_PER_MICROSECOND    72 +#define SYSTICK_RELOAD_VAL     71999 /* takes a cycle to reload */ + +#define BOARD_BUTTON_PIN          32 +#define BOARD_LED_PIN             33 + +#define NR_USARTS                 3 + +#define BOARD_USART1_TX_PIN       26 +#define BOARD_USART1_RX_PIN       25 +#define BOARD_USART2_TX_PIN       9 +#define BOARD_USART2_RX_PIN       8 +#define BOARD_USART3_TX_PIN       1 +#define BOARD_USART3_RX_PIN       0 + +#define NR_GPIO_PINS              34 + +#endif diff --git a/wirish/boards/maple_native.cpp b/wirish/boards/maple_native.cpp new file mode 100644 index 0000000..c04e98f --- /dev/null +++ b/wirish/boards/maple_native.cpp @@ -0,0 +1,155 @@ +/****************************************************************************** + * The MIT License + * + * Copyright (c) 2011 LeafLabs, LLC. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + *****************************************************************************/ + +/** + * @file   maple_native.cpp + * @author Marti Bolivar <mbolivar@leaflabs.com> + * @brief  Maple Native PIN_MAP and boardInit(). + */ + +#include "maple_native.h" +#include "native_sram.h" + +#ifdef BOARD_maple_native + +void boardInit(void) { +    initNativeSRAM(); +} + +stm32_pin_info PIN_MAP[NR_GPIO_PINS] = { + +    /* Top header */ + +    {GPIOB,   NULL, 10, 0, ADCx}, /* D0/PB10 */ +    {GPIOB,   NULL,  2, 0, ADCx}, /* D1/PB2 */ +    {GPIOB,   NULL, 12, 0, ADCx}, /* D2/PB12 */ +    {GPIOB,   NULL, 13, 0, ADCx}, /* D3/PB13 */ +    {GPIOB,   NULL, 14, 0, ADCx}, /* D4/PB14 */ +    {GPIOB,   NULL, 15, 0, ADCx}, /* D5/PB15 */ +    {GPIOC,   NULL,  0, 0,   10}, /* D6/PC0 */ +    {GPIOC,   NULL,  1, 0,   11}, /* D7/PC1 */ +    {GPIOC,   NULL,  2, 0,   12}, /* D8/PC2 */ +    {GPIOC,   NULL,  3, 0,   13}, /* D9/PC3 */ +    {GPIOC,   NULL,  4, 0,   14}, /* D10/PC4 */ +    {GPIOC,   NULL,  5, 0,   15}, /* D11/PC5 */ +    {GPIOC, TIMER8,  6, 1, ADCx}, /* D12/PC6 */ +    {GPIOC, TIMER8,  7, 2, ADCx}, /* D13/PC7 */ +    {GPIOC, TIMER8,  8, 3, ADCx}, /* D14/PC8 */ +    {GPIOC, TIMER8,  9, 4, ADCx}, /* D15/PC9 */ +    {GPIOC,   NULL, 10, 0, ADCx}, /* D16/PC10 */ +    {GPIOC,   NULL, 11, 0, ADCx}, /* D17/PC11 */ +    {GPIOC,   NULL, 12, 0, ADCx}, /* D18/PC12 */ +    {GPIOC,   NULL, 13, 0, ADCx}, /* D19/PC13 */ +    {GPIOC,   NULL, 14, 0, ADCx}, /* D20/PC14 */ +    {GPIOC,   NULL, 15, 0, ADCx}, /* D21/PC15 */ +    {GPIOA, TIMER1,  8, 1, ADCx}, /* D22/PA8 */ +    {GPIOA, TIMER1,  9, 2, ADCx}, /* D23/PA9 */ +    {GPIOA, TIMER1, 10, 3, ADCx}, /* D24/PA10 */ +    {GPIOB, TIMER4,  9, 4, ADCx}, /* D25/PB9 */ + +    /* Bottom header */ +    /* FIXME (?) What about D48--D50 also being TIMER2_CH[234]? */ + +    {GPIOD,   NULL,  2, 0, ADCx}, /* D26/PD2 */ +    {GPIOD,   NULL,  3, 0, ADCx}, /* D27/PD3 */ +    {GPIOD,   NULL,  6, 0, ADCx}, /* D28/PD6 */ +    {GPIOG,   NULL, 11, 0, ADCx}, /* D29/PG11 */ +    {GPIOG,   NULL, 12, 0, ADCx}, /* D30/PG12 */ +    {GPIOG,   NULL, 13, 0, ADCx}, /* D31/PG13 */ +    {GPIOG,   NULL, 14, 0, ADCx}, /* D32/PG14 */ +    {GPIOG,   NULL,  8, 0, ADCx}, /* D33/PG8 */ +    {GPIOG,   NULL,  7, 0, ADCx}, /* D34/PG7 */ +    {GPIOG,   NULL,  6, 0, ADCx}, /* D35/PG6 */ +    {GPIOB,   NULL,  5, 0, ADCx}, /* D36/PB5 */ +    {GPIOB, TIMER4,  6, 1, ADCx}, /* D37/PB6 */ +    {GPIOB, TIMER4,  7, 2, ADCx}, /* D38/PB7 */ +    {GPIOF,   NULL,  6, 0,    4}, /* D39/PF6 */ +    {GPIOF,   NULL,  7, 0,    5}, /* D40/PF7 */ +    {GPIOF,   NULL,  8, 0,    6}, /* D41/PF8 */ +    {GPIOF,   NULL,  9, 0,    7}, /* D42/PF9 */ +    {GPIOF,   NULL, 10, 0,    8}, /* D43/PF10 */ +    {GPIOF,   NULL, 11, 0, ADCx}, /* D44/PF11 */ +    {GPIOB, TIMER3,  1, 4,    9}, /* D45/PB1 */ +    {GPIOB, TIMER3,  0, 3,    8}, /* D46/PB0 */ +    {GPIOA, TIMER5,  0, 1,    0}, /* D47/PA0 */ +    {GPIOA, TIMER5,  1, 2,    1}, /* D48/PA1 */ +    {GPIOA, TIMER5,  2, 3,    2}, /* D49/PA2 */ +    {GPIOA, TIMER5,  3, 4,    3}, /* D50/PA3 */ +    {GPIOA,   NULL,  4, 0,    4}, /* D51/PA4 */ +    {GPIOA,   NULL,  5, 0,    5}, /* D52/PA5 */ +    {GPIOA, TIMER3,  6, 1,    6}, /* D53/PA6 */ +    {GPIOA, TIMER3,  7, 2,    7}, /* D54/PA7 */ + +    /* Right (triple) header */ + +    {GPIOF,   NULL,  0, 0, ADCx}, /* D55/PF0 */ +    {GPIOD,   NULL, 11, 0, ADCx}, /* D56/PD11 */ +    {GPIOD,   NULL, 14, 0, ADCx}, /* D57/PD14 */ +    {GPIOF,   NULL,  1, 0, ADCx}, /* D58/PF1 */ +    {GPIOD,   NULL, 12, 0, ADCx}, /* D59/PD12 */ +    {GPIOD,   NULL, 15, 0, ADCx}, /* D60/PD15 */ +    {GPIOF,   NULL,  2, 0, ADCx}, /* D61/PF2 */ +    {GPIOD,   NULL, 13, 0, ADCx}, /* D62/PD13 */ +    {GPIOD,   NULL,  0, 0, ADCx}, /* D63/PD0 */ +    {GPIOF,   NULL,  3, 0, ADCx}, /* D64/PF3 */ +    {GPIOE,   NULL,  3, 0, ADCx}, /* D65/PE3 */ +    {GPIOD,   NULL,  1, 0, ADCx}, /* D66/PD1 */ +    {GPIOF,   NULL,  4, 0, ADCx}, /* D67/PF4 */ +    {GPIOE,   NULL,  4, 0, ADCx}, /* D68/PE4 */ +    {GPIOE,   NULL,  7, 0, ADCx}, /* D69/PE7 */ +    {GPIOF,   NULL,  5, 0, ADCx}, /* D70/PF5 */ +    {GPIOE,   NULL,  5, 0, ADCx}, /* D71/PE5 */ +    {GPIOE,   NULL,  8, 0, ADCx}, /* D72/PE8 */ +    {GPIOF,   NULL, 12, 0, ADCx}, /* D73/PF12 */ +    {GPIOE,   NULL,  6, 0, ADCx}, /* D74/PE6 */ +    {GPIOE,   NULL,  9, 0, ADCx}, /* D75/PE9 */ +    {GPIOF,   NULL, 13, 0, ADCx}, /* D76/PF13 */ +    {GPIOE,   NULL, 10, 0, ADCx}, /* D77/PE10 */ +    {GPIOF,   NULL, 14, 0, ADCx}, /* D78/PF14 */ +    {GPIOG,   NULL,  9, 0, ADCx}, /* D79/PG9 */ +    {GPIOE,   NULL, 11, 0, ADCx}, /* D80/PE11 */ +    {GPIOF,   NULL, 15, 0, ADCx}, /* D81/PF15 */ +    {GPIOG,   NULL, 10, 0, ADCx}, /* D82/PG10 */ +    {GPIOE,   NULL, 12, 0, ADCx}, /* D83/PE12 */ +    {GPIOG,   NULL,  0, 0, ADCx}, /* D84/PG0 */ +    {GPIOD,   NULL,  5, 0, ADCx}, /* D85/PD5 */ +    {GPIOE,   NULL, 13, 0, ADCx}, /* D86/PE13 */ +    {GPIOG,   NULL,  1, 0, ADCx}, /* D87/PG1 */ +    {GPIOD,   NULL,  4, 0, ADCx}, /* D88/PD4 */ +    {GPIOE,   NULL, 14, 0, ADCx}, /* D89/PE14 */ +    {GPIOG,   NULL,  2, 0, ADCx}, /* D90/PG2 */ +    {GPIOE,   NULL,  1, 0, ADCx}, /* D91/PE1 */ +    {GPIOE,   NULL, 15, 0, ADCx}, /* D92/PE15 */ +    {GPIOG,   NULL,  3, 0, ADCx}, /* D93/PG3 */ +    {GPIOE,   NULL,  0, 0, ADCx}, /* D94/PE0 */ +    {GPIOD,   NULL,  8, 0, ADCx}, /* D95/PD8 */ +    {GPIOG,   NULL,  4, 0, ADCx}, /* D96/PG4 */ +    {GPIOD,   NULL,  9, 0, ADCx}, /* D97/PD9 */ +    {GPIOG,   NULL,  5, 0, ADCx}, /* D98/PG5 */ +    {GPIOD,   NULL, 10, 0, ADCx}  /* D99/PD10 */ +}; + +#endif diff --git a/wirish/boards/maple_native.h b/wirish/boards/maple_native.h new file mode 100644 index 0000000..21fc480 --- /dev/null +++ b/wirish/boards/maple_native.h @@ -0,0 +1,64 @@ +/****************************************************************************** + * The MIT License + * + * Copyright (c) 2011 LeafLabs, LLC. + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + *****************************************************************************/ + +/** + * @file   maple_native.h + * @author Marti Bolivar <mbolivar@leaflabs.com> + * @brief  Private include file for Maple Native in boards.h + * + * See maple.h for more information on these definitions. + */ + +#include "gpio.h" +#include "timer.h" + +#include "wirish_types.h" + +#ifndef _BOARD_MAPLE_NATIVE_H_ +#define _BOARD_MAPLE_NATIVE_H_ + +#define CYCLES_PER_MICROSECOND  72 +#define SYSTICK_RELOAD_VAL      71999 + +#define BOARD_LED_PIN           D21 +#define BOARD_BUTTON_PIN        D18 + +#define NR_USARTS               5 + +#define BOARD_USART1_TX_PIN     25 +#define BOARD_USART1_RX_PIN     26 +#define BOARD_USART2_TX_PIN     51 +#define BOARD_USART2_RX_PIN     52 +#define BOARD_USART3_TX_PIN     0 +#define BOARD_USART3_RX_PIN     1 +#define BOARD_UART4_TX_PIN      18 +#define BOARD_UART4_RX_PIN      19 +#define BOARD_UART5_TX_PIN      20 +#define BOARD_UART5_RX_PIN      28 + +#define NR_GPIO_PINS            100 + +#endif  | 
