Skip to content

Commit 8cbbaa0

Browse files
committed
cc3200: Add WiPy and WiPy_SD board support.
1 parent 9e44383 commit 8cbbaa0

4 files changed

Lines changed: 148 additions & 0 deletions

File tree

cc3200/boards/WIPY/mpconfigboard.h

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* This file is part of the Micro Python project, http://micropython.org/
3+
*
4+
* The MIT License (MIT)
5+
*
6+
* Copyright (c) 2013, 2014 Damien P. George
7+
* Copyright (c) 2015 Daniel Campora
8+
*
9+
* Permission is hereby granted, free of charge, to any person obtaining a copy
10+
* of this software and associated documentation files (the "Software"), to deal
11+
* in the Software without restriction, including without limitation the rights
12+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13+
* copies of the Software, and to permit persons to whom the Software is
14+
* furnished to do so, subject to the following conditions:
15+
*
16+
* The above copyright notice and this permission notice shall be included in
17+
* all copies or substantial portions of the Software.
18+
*
19+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25+
* THE SOFTWARE.
26+
*/
27+
28+
#define LAUNCHXL
29+
30+
#define MICROPY_HW_BOARD_NAME "WiPy"
31+
#define MICROPY_HW_MCU_NAME "CC3200"
32+
33+
#define MICROPY_HW_HAS_SDCARD (0)
34+
#define MICROPY_HW_ENABLE_RNG (1)
35+
#define MICROPY_HW_ENABLE_RTC (1)
36+
37+
#define MICROPY_STDIO_UART PYB_UART_0
38+
#define MICROPY_STDIO_UART_BAUD 115200
39+
40+
#define MICROPY_SYS_LED_PRCM PRCM_GPIOA3
41+
#define MICROPY_SAFE_BOOT_PRCM PRCM_GPIOA3
42+
#define MICROPY_SYS_LED_PORT GPIOA3_BASE
43+
#define MICROPY_SAFE_BOOT_PORT GPIOA3_BASE
44+
#define MICROPY_SYS_LED_PIN_NUM PIN_21
45+
#define MICROPY_SAFE_BOOT_PIN_NUM PIN_18
46+
#define MICROPY_SYS_LED_PORT_PIN GPIO_PIN_1 // GPIO25 (SOP2)
47+
#define MICROPY_SAFE_BOOT_PORT_PIN GPIO_PIN_4 // GPIO28
48+
49+
#define MICROPY_PORT_SFLASH_BLOCK_COUNT 96

cc3200/boards/WIPY/pins.csv

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
P12,58
2+
P13,4
3+
P14,3
4+
P15,61
5+
P16,59
6+
P17,5
7+
P18,62
8+
P19,1
9+
P110,2
10+
P33,57
11+
P34,60
12+
P37,63
13+
P38,53
14+
P39,64
15+
P310,50
16+
P49,16
17+
P410,17
18+
P22,18
19+
P23,8
20+
P24,45
21+
P26,7
22+
P27,6
23+
P28,21
24+
P29,55
25+
P210,15
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* This file is part of the Micro Python project, http://micropython.org/
3+
*
4+
* The MIT License (MIT)
5+
*
6+
* Copyright (c) 2013, 2014 Damien P. George
7+
* Copyright (c) 2015 Daniel Campora
8+
*
9+
* Permission is hereby granted, free of charge, to any person obtaining a copy
10+
* of this software and associated documentation files (the "Software"), to deal
11+
* in the Software without restriction, including without limitation the rights
12+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13+
* copies of the Software, and to permit persons to whom the Software is
14+
* furnished to do so, subject to the following conditions:
15+
*
16+
* The above copyright notice and this permission notice shall be included in
17+
* all copies or substantial portions of the Software.
18+
*
19+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25+
* THE SOFTWARE.
26+
*/
27+
28+
#define LAUNCHXL
29+
30+
#define MICROPY_HW_BOARD_NAME "WiPy_SD"
31+
#define MICROPY_HW_MCU_NAME "CC3200"
32+
33+
#define MICROPY_HW_HAS_SDCARD (0)
34+
#define MICROPY_HW_ENABLE_RNG (1)
35+
#define MICROPY_HW_ENABLE_RTC (1)
36+
37+
#define MICROPY_STDIO_UART PYB_UART_0
38+
#define MICROPY_STDIO_UART_BAUD 115200
39+
40+
#define MICROPY_SYS_LED_PRCM PRCM_GPIOA3
41+
#define MICROPY_SAFE_BOOT_PRCM PRCM_GPIOA3
42+
#define MICROPY_SYS_LED_PORT GPIOA3_BASE
43+
#define MICROPY_SAFE_BOOT_PORT GPIOA3_BASE
44+
#define MICROPY_SYS_LED_PIN_NUM PIN_21
45+
#define MICROPY_SAFE_BOOT_PIN_NUM PIN_18
46+
#define MICROPY_SYS_LED_PORT_PIN GPIO_PIN_1 // GPIO25 (SOP2)
47+
#define MICROPY_SAFE_BOOT_PORT_PIN GPIO_PIN_4 // GPIO28
48+
49+
#define MICROPY_PORT_SFLASH_BLOCK_COUNT 96

cc3200/boards/WIPY_SD/pins.csv

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
P12,58
2+
P13,4
3+
P14,3
4+
P15,61
5+
P16,59
6+
P17,5
7+
P18,62
8+
P19,1
9+
P110,2
10+
P33,57
11+
P34,60
12+
P37,63
13+
P38,53
14+
P39,64
15+
P310,50
16+
P49,16
17+
P410,17
18+
P22,18
19+
P23,8
20+
P24,45
21+
P26,7
22+
P27,6
23+
P28,21
24+
P29,55
25+
P210,15

0 commit comments

Comments
 (0)