File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 22
22
# just try to make the builds "about equal in run time"
23
23
env :
24
24
- TRAVIS_TESTS="unix docs translations website" TRAVIS_BOARDS="circuitplayground_express mini_sam_m4 grandcentral_m4_express pca10056 pca10059 feather_nrf52840_express makerdiary_nrf52840_mdk makerdiary_nrf52840_mdk_usb_dongle particle_boron particle_argon particle_xenon sparkfun_nrf52840_mini" TRAVIS_SDK=arm:nrf
25
- - TRAVIS_BOARDS="metro_m0_express metro_m4_express pirkey_m0 trellis_m4_express trinket_m0" TRAVIS_SDK=arm
25
+ - TRAVIS_BOARDS="metro_m0_express metro_m4_express pirkey_m0 trellis_m4_express trinket_m0 sparkfun_lumidrive sparkfun_redboard_turbo " TRAVIS_SDK=arm
26
26
- TRAVIS_BOARDS="feather_radiofruit_zigbee gemma_m0 hallowing_m0_express itsybitsy_m0_express itsybitsy_m4_express meowmeow" TRAVIS_SDK=arm
27
27
- TRAVIS_BOARDS="feather_m0_express_crickit feather_m0_rfm69 feather_m0_rfm9x feather_m4_express arduino_zero arduino_mkr1300 arduino_mkrzero" TRAVIS_SDK=arm
28
- - TRAVIS_BOARDS="circuitplayground_express_crickit feather_m0_adalogger feather_m0_basic feather_m0_express catwan_usbstick pyportal sparkfun_samd21_mini sparkfun_samd21_dev sparkfun_lumidrive sparkfun_redboard_turbo " TRAVIS_SDK=arm
28
+ - TRAVIS_BOARDS="circuitplayground_express_crickit feather_m0_adalogger feather_m0_basic feather_m0_express catwan_usbstick pyportal sparkfun_samd21_mini sparkfun_samd21_dev" TRAVIS_SDK=arm
29
29
30
30
addons :
31
31
artifacts :
Original file line number Diff line number Diff line change 6
6
// Clock rates are off: Salae reads 12MHz which is the limit even though we set it to the safer 8MHz.
7
7
#define SPI_FLASH_BAUDRATE (8000000)
8
8
9
- #define SPI_FLASH_MOSI_PIN &PIN_PA08
10
- #define SPI_FLASH_MISO_PIN &PIN_PA14
11
- #define SPI_FLASH_SCK_PIN &PIN_PA09
12
- #define SPI_FLASH_CS_PIN &PIN_PA13
9
+ #define SPI_FLASH_MOSI_PIN &pin_PA08
10
+ #define SPI_FLASH_MISO_PIN &pin_PA14
11
+ #define SPI_FLASH_SCK_PIN &pin_PA09
12
+ #define SPI_FLASH_CS_PIN &pin_PA13
13
13
14
14
#define MICROPY_PORT_A ( 0 )
15
15
#define MICROPY_PORT_B ( 0 )
Original file line number Diff line number Diff line change 1
1
#include "shared-bindings/board/__init__.h"
2
2
3
- #include "board_busses.h"
3
+ #include "supervisor/shared/ board_busses.h"
4
4
5
5
STATIC const mp_rom_map_elem_t board_global_dict_table [] = {
6
6
{ MP_ROM_QSTR (MP_QSTR_A3 ), MP_ROM_PTR (& pin_PA04 ) },
Original file line number Diff line number Diff line change 1
1
#include "shared-bindings/board/__init__.h"
2
2
3
- #include "board_busses.h"
3
+ #include "supervisor/shared/ board_busses.h"
4
4
5
5
STATIC const mp_rom_map_elem_t board_global_dict_table [] = {
6
6
{ MP_ROM_QSTR (MP_QSTR_A0 ), MP_ROM_PTR (& pin_PA02 ) },
@@ -35,4 +35,4 @@ STATIC const mp_rom_map_elem_t board_global_dict_table[] = {
35
35
{ MP_ROM_QSTR (MP_QSTR_SPI ), MP_ROM_PTR (& board_spi_obj ) },
36
36
{ MP_ROM_QSTR (MP_QSTR_UART ), MP_ROM_PTR (& board_uart_obj ) },
37
37
};
38
- MP_DEFINE_CONST_DICT (board_module_globals , board_global_dict_table );
38
+ MP_DEFINE_CONST_DICT (board_module_globals , board_global_dict_table );
You can’t perform that action at this time.
0 commit comments