Skip to content

Commit e2162e4

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 e2162e4

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/*
2+
* Copyright (c) 2026 Dhruva Gole <d-gole@ti.com>
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
zephyr,user {
9+
digital-pin-gpios = <&gpio0 0 0>,
10+
<&gpio0 1 0>,
11+
<&gpio0 2 0>,
12+
<&gpio0 3 0>,
13+
<&gpio0 4 0>,
14+
<&gpio0 5 0>,
15+
<&gpio0 6 0>,
16+
<&gpio0 7 0>;
17+
builtin-led-gpios = <&gpio0 0 0>;
18+
serials = <&uart0>;
19+
};
20+
};

0 commit comments

Comments
 (0)