Skip to content

Merge 8.2.x to main #8395

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 28 commits into from
Sep 13, 2023
Merged
Changes from 3 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
c1144e6
Add files via upload
BrainBoardz Aug 28, 2023
9bdb576
Add files via upload
BrainBoardz Aug 28, 2023
524d7a0
Merge pull request #8343 from BrainBoardzProject/8.2.x
tannewt Aug 28, 2023
9daccc0
Forbidden pins are now correctly "in use" on ESP
tannewt Aug 28, 2023
06ccd41
Remove frozen libs from Funhouse
makermelissa Aug 29, 2023
e34e1da
Merge pull request #8356 from jepler/remove-funhouse-frozen-82x
makermelissa Sep 1, 2023
442f84d
Merge pull request #8345 from tannewt/s3_watchdog
tannewt Sep 5, 2023
0c0b927
added waveshare_esp32_s3_pico for circuitpython version 8.2.x
tirtharajsinha Sep 6, 2023
1eb8822
added SCL and SDA
tirtharajsinha Sep 6, 2023
896be9e
added precommit
tirtharajsinha Sep 6, 2023
d7edec6
8.2.x backport Added Arduino Nano ESP32-S3
tannewt Sep 5, 2023
d871bc3
remove lib/certificates/nina-fw submodule
dhalbert Sep 6, 2023
58a2132
Update to new certificates submodule.
dhalbert Sep 6, 2023
e71c397
Added UM FeatherS3 second I2C STEMMAQT
UnexpectedMaker Sep 7, 2023
7dac8fc
Merge pull request #8373 from makermelissa/8.2.x
dhalbert Sep 7, 2023
bc44571
Merge pull request #8375 from UnexpectedCircuitPython/fs3_changes
dhalbert Sep 7, 2023
c5bc59e
update protomatter to 1.6.1 (used for RGBMatrix)
dhalbert Sep 7, 2023
aaa23df
Merge pull request #8372 from tirtharajsinha/8.2.x
dhalbert Sep 7, 2023
6f5a5a5
Merge pull request #8376 from dhalbert/protomatter-1.6.1
dhalbert Sep 7, 2023
4dd45b6
Merge pull request #8374 from dhalbert/new-certificates-submodule
dhalbert Sep 7, 2023
722d64b
Add root cert DST Root CA X3 for Let's Encrypt
dhalbert Sep 11, 2023
7071202
Merge pull request #8386 from dhalbert/lets-encrypt-cert
dhalbert Sep 11, 2023
0526794
Revert "formatting" (from #8089)
dhalbert Sep 12, 2023
46bcd10
Revert "Reset UART on deinit, reduces power consumption" (from #8089)
dhalbert Sep 12, 2023
d8aeceb
SSLContext.load_verify_locations - no kw-only args
dhalbert Sep 12, 2023
74f17b1
Merge pull request #8392 from dhalbert/8.2.x-sslcontext-args
dhalbert Sep 12, 2023
09329fe
Merge pull request #8391 from dhalbert/8.2.x-revert-8089-nrf-uart-pow…
tannewt Sep 12, 2023
9f1d526
merge from 8.2.x
dhalbert Sep 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions ports/nrf/common-hal/busio/UART.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,15 +266,8 @@ bool common_hal_busio_uart_deinited(busio_uart_obj_t *self) {
}

void common_hal_busio_uart_deinit(busio_uart_obj_t *self) {
volatile uint32_t *power_cycle = (void *)(self->uarte->p_reg) + 0xFFC;
if (!common_hal_busio_uart_deinited(self)) {
nrfx_uarte_rx_abort(self->uarte);
nrfx_uarte_tx_abort(self->uarte);
nrfx_uarte_uninit(self->uarte);
// power cycle the peripheral as per https://devzone.nordicsemi.com/f/nordic-q-a/26030/how-to-reach-nrf52840-uarte-current-supply-specification/102605#102605
*power_cycle = 0;
*power_cycle;
*power_cycle = 1;
reset_pin_number(self->tx_pin_number);
reset_pin_number(self->rx_pin_number);
reset_pin_number(self->rts_pin_number);
Expand Down