mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #12407 from mprse/NRF_restricyed_uart_fix
Disable restricted uart peripheral for NRF52840pull/12431/head
commit
df6d0729b1
|
@ -303,3 +303,14 @@ const PinMap PinMap_QSPI_testing[] = {
|
||||||
|
|
||||||
{NC, NC, 0}
|
{NC, NC, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* On NRF we have just dummy pin-maps for testing (no peripherals are specified).
|
||||||
|
Disable restriction for STDIO uart peripheral. */
|
||||||
|
const PeripheralList *pinmap_uart_restricted_peripherals()
|
||||||
|
{
|
||||||
|
static const PeripheralList peripheral_list = {
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
};
|
||||||
|
return &peripheral_list;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue