Skip to content

Commit de38ce7

Browse files
authored
Merge pull request adafruit#1775 from dhalbert/fix-bast-pro-mini-build
Fix version skew for bast_pro_mini build
2 parents ac2fd2f + c0c809a commit de38ce7

File tree

2 files changed

+1
-3
lines changed
  • ports/atmel-samd/boards/bast_pro_mini_m0
  • shared-bindings/busio

2 files changed

+1
-3
lines changed

ports/atmel-samd/boards/bast_pro_mini_m0/pins.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#include "shared-bindings/board/__init__.h"
22

3-
#include "supervisor/shared/board_busses.h"
4-
53
STATIC const mp_rom_map_elem_t board_global_dict_table[] = {
64
{ MP_ROM_QSTR(MP_QSTR_A0), MP_ROM_PTR(&pin_PA02) },
75
{ MP_ROM_QSTR(MP_QSTR_A1), MP_ROM_PTR(&pin_PA04) },

shared-bindings/busio/UART.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
//| :param int bits: the number of bits per byte, 7, 8 or 9.
5858
//| :param Parity parity: the parity used for error checking.
5959
//| :param int stop: the number of stop bits, 1 or 2.
60-
//| :param int timeout: the timeout in seconds to wait for the first character and between subsequent characters. Raises ``ValueError`` if timeout >100 seconds.
60+
//| :param float timeout: the timeout in seconds to wait for the first character and between subsequent characters. Raises ``ValueError`` if timeout >100 seconds.
6161
//| :param int receiver_buffer_size: the character length of the read buffer (0 to disable). (When a character is 9 bits the buffer will be 2 * receiver_buffer_size bytes.)
6262
//|
6363
//| *New in CircuitPython 4.0:* ``timeout`` has incompatibly changed units from milliseconds to seconds.

0 commit comments

Comments
 (0)