8000 add HalloWing · sparkfun/circuitpython@1768057 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1768057

Browse files
dhalberttannewt
authored andcommitted
add HalloWing
1 parent cac760a commit 1768057

File tree

7 files changed

+214
-1
lines changed

7 files changed

+214
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ env:
2222
- TRAVIS_BOARD=pirkey_m0
2323
- TRAVIS_BOARD=trinket_m0
2424
- TRAVIS_BOARD=gemma_m0
25+
- TRAVIS_BOARD=hallowing_m0_express
2526
- TRAVIS_BOARD=feather52832
2627
- TRAVIS_BOARD=pca10056
2728
- TRAVIS_TEST=qemu
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*
2+
* This file is part of the MicroPython project, http://micropython.org/
3+
*
4+
* The MIT License (MIT)
5+
*
6+
* Copyright (c) 2017 Scott Shawcroft for Adafruit Industries
7+
*
8+
* Permission is hereby granted, free of charge, to any person obtaining a copy
9+
* of this software and associated documentation files (the "Software"), to deal
10+
* in the Software without restriction, including without limitation the rights
11+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
* copies of the Software, and to permit persons to whom the Software is
13+
* furnished to do so, subject to the following conditions:
14+
*
15+
* The above copyright notice and this permission notice shall be included in
16+
* all copies or substantial portions of the Software.
17+
*
18+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24+
* THE SOFTWARE.
25+
*/
26+
27+
#include "boards/board.h"
28+
29+
void board_init(void)
30+
{
31+
}
32+
33+
bool board_requests_safe_mode(void) {
34+
return false;
35+
}
36+
37+
void reset_board(void) {
38+
}
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
#define MICROPY_HW_BOARD_NAME "HalloWing M0 Express"
2+
#define MICROPY_HW_MCU_NAME "samd21g18"
3+
4+
#define MICROPY_HW_NEOPIXEL (&pin_PA12)
5+
6+
// Clock rates are off: Salae reads 12MHz which is the limit even though we set it to the safer 8MHz.
7+
#define SPI_FLASH_BAUDRATE (8000000)
8+
9+
#define SPI_FLASH_MOSI_PIN PIN_PB10
10+
#define SPI_FLASH_MISO_PIN PIN_PA13
11+
#define SPI_FLASH_SCK_PIN PIN_PB11
12+
#define SPI_FLASH_CS_PIN PIN_PA07
13+
#define SPI_FLASH_MOSI_PIN_FUNCTION PINMUX_PB10D_SERCOM4_PAD2
14+
#define SPI_FLASH_MISO_PIN_FUNCTION PINMUX_PA13D_SERCOM4_PAD1
15+
#define SPI_FLASH_SCK_PIN_FUNCTION PINMUX_PB11D_SERCOM4_PAD3
16+
#define SPI_FLASH_SERCOM SERCOM4
17+
#define SPI_FLASH_SERCOM_INDEX 4
18+
#define SPI_FLASH_MOSI_PAD 2
19+
#define SPI_FLASH_MISO_PAD 1
20+
#define SPI_FLASH_SCK_PAD 3
21+
// <o> Transmit Data Pinout
22+
// <0x0=>PAD[0,1]_DO_SCK
23+
// <0x1=>PAD[2,3]_DO_SCK
24+
// <0x2=>PAD[3,1]_DO_SCK
25+
// <0x3=>PAD[0,3]_DO_SCK
26+
#define SPI_FLASH_DOPO 0x1
27+
#define SPI_FLASH_DIPO 1 // same as MISO pad
28+
29+
// These are pins not to reset.
30+
#define MICROPY_PORT_A (PORT_PA07 | PORT_PA12 | PORT_PA13 | PORT_PA24 | PORT_PA25)
31+
#define MICROPY_PORT_B ( PORT_PB10 | PORT_PB11 )
32+
#define MICROPY_PORT_C ( 0 )
33+
34+
#include "external_flash/external_flash.h"
35+
36+
// If you change this, then make sure to update the linker scripts as well to
37+
// make sure you don't overwrite code.
38+
#define CIRCUITPY_INTERNAL_NVM_SIZE 256
39+
40+
#define BOARD_FLASH_SIZE (0x00040000 - 0x2000 - CIRCUITPY_INTERNAL_NVM_SIZE)
41+
42+
#include "external_flash/devices.h"
43+
44+
#define EXTERNAL_FLASH_DEVICE_COUNT 2
45+
46+
#define EXTERNAL_FLASH_DEVICES W25Q64JV_IM, \
47+
GD25Q64C
48+
49+
#include "external_flash/external_flash.h"
50+
51+
#define DEFAULT_I2C_BUS_SCL (&pin_PA17)
52+
#define DEFAULT_I2C_BUS_SDA (&pin_PA16)
53+
54+
#define DEFAULT_SPI_BUS_SCK (&pin_PB23)
55+
#define DEFAULT_SPI_BUS_MOSI (&pin_PB22)
56+
#define DEFAULT_SPI_BUS_MISO (&pin_PB03)
57+
58+
#define DEFAULT_UART_BUS_RX (&pin_PA09)
59+
#define DEFAULT_UART_BUS_TX (&pin_PA10)
60+
61+
// USB is always used internally so skip the pin objects for it.
62+
#define IGNORE_PIN_PA24 1
63+
#define IGNORE_PIN_PA25 1
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
LD_FILE = boards/samd21x18-bootloader-external-flash.ld
2+
USB_VID = 0x239A
3+
USB_PID = 0xD1ED
4+
USB_PRODUCT = "HalloWing M0 Express"
5+
USB_MANUFACTURER = "Adafruit Industries LLC"
6+
7+
SPI_FLASH_FILESYSTEM = 1
8+
LONGINT_IMPL = MPZ
9+
10+
CHIP_VARIANT = SAMD21G18A
11+
CHIP_FAMILY = samd21
12+
13+
# Include these Python libraries in firmware.
14+
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice
15+
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_HID
16+
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_LIS3DH
17+
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_NeoPixel
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
#include "shared-bindings/board/__init__.h"
2+
3+
#include "board_busses.h"
4+
5+
STATIC const mp_rom_map_elem_t board_global_dict_table[] = {
6+
{ MP_ROM_QSTR(MP_QSTR_A0), MP_ROM_PTR(&pin_PA02) },
7+
{ MP_ROM_QSTR(MP_QSTR_SPEAKER), MP_ROM_PTR(&pin_PA02) },
8+
9+
{ MP_ROM_QSTR(MP_QSTR_A1), MP_ROM_PTR(&pin_PB08) },
10+
{ MP_ROM_QSTR(MP_QSTR_LIGHT), MP_ROM_PTR(&pin_PB08) },
11+
12+
{ MP_ROM_QSTR(MP_QSTR_A2), MP_ROM_PTR(&pin_PB09) },
13+
{ MP_ROM_QSTR(MP_QSTR_TOUCH4), MP_ROM_PTR(&pin_PB09) },
14+
15+
{ MP_ROM_QSTR(MP_QSTR_A3), MP_ROM_PTR(&pin_PA04) },
16+
{ MP_ROM_QSTR(MP_QSTR_TOUCH3), MP_ROM_PTR(&pin_PA04) },
17+
18+
{ MP_ROM_QSTR(MP_QSTR_A4), MP_ROM_PTR(&pin_PA05) },
19+
{ MP_ROM_QSTR(MP_QSTR_TOUCH2), MP_ROM_PTR(&pin_PA05) },
20+
21+
{ MP_ROM_QSTR(MP_QSTR_A5), MP_ROM_PTR(&pin_PA06) },
22+
{ MP_ROM_QSTR(MP_QSTR_TOUCH1), MP_ROM_PTR(&pin_PA06) },
23+
24+
{ MP_ROM_QSTR(MP_QSTR_SCK), MP_ROM_PTR(&pin_PB23) },
25+
{ MP_ROM_QSTR(MP_QSTR_MOSI), MP_ROM_PTR(&pin_PB22) },
26+
{ MP_ROM_QSTR(MP_QSTR_MISO), MP_ROM_PTR(&pin_PB03) },
27+
28+
{ MP_ROM_QSTR(MP_QSTR_D0), MP_ROM_PTR(&pin_PA09) },
29+
{ MP_ROM_QSTR(MP_QSTR_RX), MP_ROM_PTR(&pin_PA09) },
30+
{ MP_ROM_QSTR(MP_QSTR_D1), MP_ROM_PTR(&pin_PA10) },
31+
{ MP_ROM_QSTR(MP_QSTR_TX), MP_ROM_PTR(&pin_PA10) },
32+
33+
{ MP_ROM_QSTR(MP_QSTR_SDA), MP_ROM_PTR(&pin_PA16) },
34+
{ MP_ROM_QSTR(MP_QSTR_SCL), MP_ROM_PTR(&pin_PA17) },
35+
36+
{ MP_ROM_QSTR(MP_QSTR_D5), MP_ROM_PTR(&pin_PA15) },
37+
{ MP_ROM_QSTR(MP_QSTR_D6), MP_ROM_PTR(&pin_PA18) },
38+
{ MP_ROM_QSTR(MP_QSTR_D9), MP_ROM_PTR(&pin_PA19) },
39+
{ MP_ROM_QSTR(MP_QSTR_D10), MP_ROM_PTR(&pin_PA20) },
40+
{ MP_ROM_QSTR(MP_QSTR_D11), MP_ROM_PTR(&pin_PA21) },
41+
{ MP_ROM_QSTR(MP_QSTR_D12), MP_ROM_PTR(&pin_PA22) },
42+
{ MP_ROM_QSTR(MP_QSTR_D13), MP_ROM_PTR(&pin_PA23) },
43+
44+
{ MP_ROM_QSTR(MP_QSTR_EXTERNAL_NEOPIXEL), MP_ROM_PTR(&pin_PA08) },
45+
{ MP_ROM_QSTR(MP_QSTR_NEOPIXEL), MP_ROM_PTR(&pin_PA12) },
46+
{ MP_ROM_QSTR(MP_QSTR_SENSE), MP_ROM_PTR(&pin_PA11) },
47+
48+
{ MP_ROM_QSTR(MP_QSTR_TFT_BACKLIGHT), MP_ROM_PTR(&pin_PA00) },
49+
{ MP_ROM_QSTR(MP_QSTR_TFT_CS), MP_ROM_PTR(&pin_PA01) },
50+
{ MP_ROM_QSTR(MP_QSTR_TFT_DC), MP_ROM_PTR(&pin_PA28) },
51+
{ MP_ROM_QSTR(MP_QSTR_TFT_RESET), MP_ROM_PTR(&pin_PA27) },
52+
53+
{ MP_ROM_QSTR(MP_QSTR_BATTERY), MP_ROM_PTR(&pin_PB02) },
54+
{ MP_ROM_QSTR(MP_QSTR_ACCELEROMETER_INTERRUPT), MP_ROM_PTR(&pin_PA14) },
55+
56+
{ MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&board_i2c_obj) },
57+
{ MP_ROM_QSTR(MP_QSTR_SPI), MP_ROM_PTR(&board_spi_obj) },
58+
{ MP_ROM_QSTR(MP_QSTR_UART), MP_ROM_PTR(&board_uart_obj) },
59+
};
60+
MP_DEFINE_CONST_DICT(board_module_globals, board_global_dict_table);

ports/atmel-samd/external_flash/devices.h

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,22 @@ typedef struct {
8989
.supports_qspi_writes = true, \
9090
}
9191

92+
// Settings for the Gigadevice GD25Q64C 8MiB SPI flash.
93+
// Datasheet: http://www.elm-tech.com/en/products/spi-flash-memory/gd25q64/gd25q64.pdf
94+
#define GD25Q64C {\
95+
.total_size = (1 << 23), /* 8 MiB */ \
96+
.start_up_time_us = 5000, \
97+
.manufacturer_id = 0xc8, \
98+
.memory_type = 0x40, \
99+
.capacity = 0x17, \
100+
.max_clock_speed_mhz = 104, /* if we need 120 then we can turn on high performance mode */ \
101+
.has_sector_protection = false, \
102+
.supports_fast_read = true, \
103+
.supports_qspi = true, \
104+
.has_quad_enable = true, \
105+
.supports_qspi_writes = true, \
106+
}
107+
92108
// Settings for the Cypress (was Spansion) S25FL064L 8MiB SPI flash.
93109
// Datasheet: http://www.cypress.com/file/316661/download
94110
#define S25FL064L {\
@@ -185,6 +201,22 @@ typedef struct {
185201
.supports_qspi_writes = false, \
186202
}
187203

204+
// Settings for the Winbond W25Q64JV-IM 8MiB SPI flash. Note that JV-IQ has a different .memory_type (0x40)
205+
// Datasheet: http://www.winbond.com/resource-files/w25q64jv%20revj%2003272018%20plus.pdf
206+
#define W25Q64JV_IM {\
207+
.total_size = (1 << 23), /* 8 MiB */ \
208+
.start_up_time_us = 5000, \
209+
.manufacturer_id = 0xef, \
210+
.memory_type = 0x70, \
211+
.capacity = 0x17, \
212+
.max_clock_speed_mhz = 133, \
213+
.has_sector_protection = false, \
214+
.supports_fast_read = true, \
215+
.supports_qspi = true, \
216+
.has_quad_enable = true, \
217+
.supports_qspi_writes = true, \
218+
}
219+
188220
// Settings for the Winbond W25Q80DL 1MiB SPI flash.
189221
// Datasheet: https://www.winbond.com/resource-files/w25q80dv%20dl_revh_10022015.pdf
190222
#define W25Q80DL {\
@@ -201,4 +233,6 @@ typedef struct {
201233
.supports_qspi_writes = false, \
202234
}
203235

236+
237+
204238
#endif // MICROPY_INCLUDED_ATMEL_SAMD_EXTERNAL_FLASH_DEVICES_H

tools/build_adafruit_bins.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ rm -rf ports/atmel-samd/build*
22
rm -rf ports/esp8266/build*
33
rm -rf ports/nrf/build*
44

5-
ATMEL_BOARDS="arduino_zero circuitplayground_express circuitplayground_express_crickit feather_m0_basic feather_m0_adalogger itsybitsy_m0_express itsybitsy_m4_express feather_m0_rfm69 feather_m0_rfm9x feather_m0_express feather_m0_express_crickit feather_m4_express metro_m0_express metro_m4_express pirkey_m0 trinket_m0 gemma_m0 feather52832 feather_huzzah pca10056"
5+
ATMEL_BOARDS="arduino_zero circuitplayground_express circuitplayground_express_crickit feather_m0_basic feather_m0_adalogger itsybitsy_m0_express itsybitsy_m4_express feather_m0_rfm69 feather_m0_rfm9x feather_m0_express feather_m0_express_crickit feather_m4_express metro_m0_express metro_m4_express pirkey_m0 trinket_m0 gemma_m0 feather52832 feather_huzzah pca10056 hallowing_m0_express"
66
ROSIE_SETUPS="rosie-ci"
77

88
PARALLEL="-j 5"

0 commit comments

Comments
 (0)
0