tests: uart: Add nrf9160_pca10090 to UART async test

Add nrf9160_pca10090 to UART async test.
Add myself as codeowner to uart_async_api tests.

Signed-off-by: Mieszko Mierunski <mieszko.mierunski@nordicsemi.no>
This commit is contained in:
Mieszko Mierunski 2019-02-20 09:59:48 +01:00 committed by Anas Nashif
parent 48f005707e
commit cbf4e54ead
4 changed files with 12 additions and 0 deletions

View file

@ -279,6 +279,7 @@
/tests/drivers/can/ @alexanderwachter
/tests/drivers/hwinfo/ @alexanderwachter
/tests/drivers/spi/ @tbursztyka
/tests/drivers/uart/uart_async_api/ @Mierunski
/tests/kernel/ @andrewboie @andyross @nashif
/tests/net/ @jukkar @tbursztyka @pfalcon
/tests/net/buf/ @jukkar @jhedberg @tbursztyka @pfalcon

View file

@ -0,0 +1,2 @@
CONFIG_UART_1_NRF_UARTE=y
CONFIG_ARM_MPU=n

View file

@ -0,0 +1,7 @@
&uart1 {
current-speed = <115200>;
compatible = "nordic,nrf-uarte";
status = "ok";
tx-pin = <10>;
rx-pin = <11>;
};

View file

@ -21,6 +21,8 @@
#if defined(CONFIG_BOARD_NRF52840_PCA10056)
#define UART_DEVICE_NAME DT_UART_0_NAME
#elif defined(CONFIG_BOARD_NRF9160_PCA10090)
#define UART_DEVICE_NAME DT_UART_1_NAME
#else
#define UART_DEVICE_NAME CONFIG_UART_CONSOLE_ON_DEV_NAME
#endif