Skip to content

Commit 3b491ac

Browse files
author
Seth Kerr
committed
ran pre-commit locally
1 parent 2ebeeb5 commit 3b491ac

File tree

12 files changed

+102
-1
lines changed

12 files changed

+102
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ jobs:
524524
- "morpheans_morphesp-240"
525525
- "muselab_nanoesp32_s2_wroom"
526526
- "muselab_nanoesp32_s2_wrover"
527+
- "odt_pixelwing_esp32_s2"
527528
- "targett_module_clip_wroom"
528529
- "targett_module_clip_wrover"
529530
- "unexpectedmaker_feathers2"

locale/circuitpython.pot

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1388,7 +1388,8 @@ msgstr ""
13881388
#: ports/mimxrt10xx/common-hal/busio/SPI.c ports/nrf/common-hal/busio/I2C.c
13891389
#: ports/raspberrypi/common-hal/busio/I2C.c
13901390
#: ports/raspberrypi/common-hal/busio/SPI.c
1391-
#: ports/raspberrypi/common-hal/busio/UART.c
1391+
#: ports/raspberrypi/common-hal/busio/UART.c shared-bindings/busio/SPI.c
1392+
#: shared-bindings/busio/UART.c
13921393
msgid "Invalid pins"
13931394
msgstr ""
13941395

@@ -3917,8 +3918,10 @@ msgstr ""
39173918
#: ports/esp32s2/boards/gravitech_cucumber_rs/mpconfigboard.h
39183919
#: ports/esp32s2/boards/lilygo_ttgo_t8_s2_st7789/mpconfigboard.h
39193920
#: ports/esp32s2/boards/microdev_micro_s2/mpconfigboard.h
3921+
#: ports/esp32s2/boards/morpheans_morphesp-240/mpconfigboard.h
39203922
#: ports/esp32s2/boards/muselab_nanoesp32_s2_wroom/mpconfigboard.h
39213923
#: ports/esp32s2/boards/muselab_nanoesp32_s2_wrover/mpconfigboard.h
3924+
#: ports/esp32s2/boards/odt_pixelwing_esp32_s2/mpconfigboard.h
39223925
#: ports/esp32s2/boards/targett_module_clip_wroom/mpconfigboard.h
39233926
#: ports/esp32s2/boards/targett_module_clip_wrover/mpconfigboard.h
39243927
#: ports/esp32s2/boards/unexpectedmaker_feathers2/mpconfigboard.h
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
* This file is part of the MicroPython project, http://micropython.org/
3+
*
4+
* The MIT License (MIT)
5+
*
6+
* Copyright (c) 2021 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 "supervisor/board.h"
28+
29+
void board_init(void) {
30+
}
31+
32+
bool board_requests_safe_mode(void) {
33+
return false;
34+
}
35+
36+
void reset_board(void) {
37+
}
38+
39+
void board_deinit(void) {
40+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#define MICROPY_HW_BOARD_NAME "Oak Development Technologies"
2+
#define MICROPY_HW_MCU_NAME "rp2040"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
USB_VID = 0x1209
2+
USB_PID = 0x4DF1
3+
USB_PRODUCT = "Bread 2040"
4+
USB_MANUFACTURER = "Oak Dev Tech"
5+
6+
CHIP_VARIANT = RP2040
7+
CHIP_FAMILY = rp2
8+
9+
EXTERNAL_FLASH_DEVICES = "W25Q16JVxQ"
10+
11+
CIRCUITPY__EVE = 1

0 commit comments

Comments
 (0)