@@ -20,7 +20,6 @@ pub fn build(b: *std.Build) void {
20
20
.{ .target = mb .ports .rp2xxx .boards .raspberrypi .pico , .name = "pico_pwm" , .file = "src/rp2040_only/pwm.zig" },
21
21
.{ .target = mb .ports .rp2xxx .boards .raspberrypi .pico , .name = "pico_random" , .file = "src/rp2040_only/random.zig" },
22
22
.{ .target = mb .ports .rp2xxx .boards .raspberrypi .pico , .name = "pico_rtc" , .file = "src/rp2040_only/rtc.zig" },
23
- .{ .target = mb .ports .rp2xxx .boards .raspberrypi .pico , .name = "pico_uart-echo" , .file = "src/rp2040_only/uart_echo.zig" },
24
23
.{ .target = mb .ports .rp2xxx .boards .raspberrypi .pico , .name = "pico_usb-hid" , .file = "src/rp2040_only/usb_hid.zig" },
25
24
.{ .target = mb .ports .rp2xxx .boards .raspberrypi .pico , .name = "pico_multicore" , .file = "src/rp2040_only/blinky_core1.zig" },
26
25
.{ .target = mb .ports .rp2xxx .boards .raspberrypi .pico , .name = "pico_hd44780" , .file = "src/rp2040_only/hd44780.zig" },
@@ -38,6 +37,7 @@ pub fn build(b: *std.Build) void {
38
37
};
39
38
40
39
const chip_agnostic_examples : []const ChipAgnosticExample = &.{
40
+ .{ .name = "uart-echo" , .file = "src/uart_echo.zig" },
41
41
.{ .name = "uart-log" , .file = "src/uart_log.zig" },
42
42
.{ .name = "spi-master" , .file = "src/spi_master.zig" },
43
43
.{ .name = "spi-slave" , .file = "src/spi_slave.zig" },
0 commit comments