Skip to content

Commit

Permalink
update to master
Browse files Browse the repository at this point in the history
  • Loading branch information
mattnite committed Feb 22, 2025
1 parent fe048f9 commit 06789bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/raspberrypi/rp2xxx/src/spi_slave.zig
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const SCK_PIN = 18;
// master or slave mode.
const RX_PIN = 16;

pub const microzig_options = .{
pub const microzig_options = microzig.Options{
.log_level = .debug,
.logFn = rp2xxx.uart.logFn,
};
Expand Down
2 changes: 1 addition & 1 deletion port/stmicro/stm32/src/hals/STM32F303/pins.zig
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ fn PortConfiguration() type {
.is_comptime = false,
.name = std.fmt.comptimePrint("P{c}{d}", .{ gpio_port_id, gpio_pin_number_int }),
.type = ?PinConfiguration,
.default_value = &@as(?PinConfiguration, null),
.default_value_ptr = &@as(?PinConfiguration, null),
.alignment = @alignOf(?PinConfiguration),
}};
}
Expand Down

0 comments on commit 06789bc

Please sign in to comment.