Skip to content

Commit fb0d768

Browse files
committed
variants: Add initial native_sim support
Add variants/native_sim/ with native_sim.overlay and native_sim_pinmap.h to support the native_sim board (renamed from native_posix in Zephyr). native_sim support enables: - CI/testing without requiring physical hardware - Rapid development iteration on host machine - Debugging Arduino API implementations with native toolchains - Verifying devicetree overlays and pin mappings in simulation - Running samples like hello_arduino locally before flashing targets Signed-off-by: Dhruva Gole <d-gole@ti.com>
1 parent 9d9665b commit fb0d768

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/ {
2+
zephyr,user {
3+
digital-pin-gpios = <&gpio0 0 0>,
4+
<&gpio0 1 0>,
5+
<&gpio0 2 0>,
6+
<&gpio0 3 0>,
7+
<&gpio0 4 0>,
8+
<&gpio0 5 0>,
9+
<&gpio0 6 0>,
10+
<&gpio0 7 0>;
11+
builtin-led-gpios = <&gpio0 0 0>;
12+
serials = <&uart0>;
13+
};
14+
};

0 commit comments

Comments
 (0)