2018-07-26 11:48:55 +02:00
|
|
|
/**
|
|
|
|
@defgroup boards_native Native Board
|
|
|
|
@ingroup boards
|
2018-08-10 10:58:36 +02:00
|
|
|
@brief Support for running RIOT in native
|
2018-07-26 11:48:55 +02:00
|
|
|
|
|
|
|
[Family: native](https://github.com/RIOT-OS/RIOT/wiki/Family:-native)
|
|
|
|
|
|
|
|
# Overview
|
2023-09-27 09:10:15 +02:00
|
|
|
![Terminal running RIOT native](https://raw.githubusercontent.com/wiki/RIOT-OS/RIOT/images/Native.jpg)
|
2018-07-26 11:48:55 +02:00
|
|
|
|
|
|
|
# Hardware
|
|
|
|
- CPU: Host CPU
|
|
|
|
- RAM: Host RAM
|
2021-05-11 10:19:03 +02:00
|
|
|
- Flash:
|
|
|
|
- for program execution: Host file system
|
|
|
|
- for the @ref drivers_periph_flashpage : emulated in RAM
|
2018-07-26 11:48:55 +02:00
|
|
|
- Network: Tap Interface
|
|
|
|
- UART: Runtime configurable - `/dev/tty*` are supported
|
|
|
|
- Timers: Host timer
|
|
|
|
- LEDs: One red and one green LED - state changes are printed to the UART
|
2019-01-22 23:15:22 +01:00
|
|
|
- PWM: Dummy PWM
|
|
|
|
- QDEC: Emulated according to PWM
|
2019-04-06 15:05:07 +02:00
|
|
|
- SPI: Runtime configurable - `/dev/spidev*` are supported (Linux host only)
|
2020-10-23 14:17:24 +02:00
|
|
|
- GPIO: Runtime configurable - `/dev/gpiochip*` are supported (Linux host only)
|
2020-02-21 12:51:41 +01:00
|
|
|
|
2020-10-23 14:16:54 +02:00
|
|
|
# Required packages
|
|
|
|
|
|
|
|
On Debian/Ubuntu you can install the required libraries with
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo apt install gcc-multilib
|
2022-05-23 12:02:24 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Likewise, for the unittest execution, `libasan5` is needed for 32 bit binaries.
|
|
|
|
On Debian/Ubuntu you can install the required libraries with
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo apt install lib32asan5
|
2020-10-23 14:16:54 +02:00
|
|
|
```
|
|
|
|
|
2018-07-26 11:48:55 +02:00
|
|
|
*/
|