srctree

Gregory Mullen parent 6ce09c2c
init commit

filename was Deleted added: 127, removed: 5, total 122
@@ -0,0 +1,4 @@
zig-out/*
zig-cache/*
.zig-cache/*
 
 
filename was Deleted added: 127, removed: 5, total 122
@@ -0,0 +1 @@
# raspi gpio toy README.md
 
filename was Deleted added: 127, removed: 5, total 122
@@ -0,0 +1,28 @@
const std = @import("std");
 
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
 
const exe_mod = b.createModule(.{
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
 
const exe = b.addExecutable(.{ .name = "gpio", .root_module = exe_mod });
b.installArtifact(exe);
const run_cmd = b.addRunArtifact(exe);
run_cmd.step.dependOn(b.getInstallStep());
 
if (b.args) |args| {
run_cmd.addArgs(args);
}
 
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
const exe_unit_tests = b.addTest(.{ .root_module = exe_mod });
const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests);
const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&run_exe_unit_tests.step);
}
 
filename was Deleted added: 127, removed: 5, total 122
@@ -0,0 +1,12 @@
.{
.name = .gpio,
.version = "0.0.0",
.fingerprint = 0xba76d4d1eed37837,
.minimum_zig_version = "0.14.0",
.dependencies = .{ },
.paths = .{
"build.zig",
"build.zig.zon",
"src",
},
}
 
filename was Deleted added: 127, removed: 5, total 122
@@ -0,0 +1,77 @@
const DIR: []const u8 = "/sys/class/gpio";
const EXPORT: []const u8 = "export";
const DIRECTION: []const u8 = "direction";
 
const PINS = [_]u16{ 517, 518, 525, 531 };
 
fn exportPin(comptime pin: u16) !void {
log.debug("export pin {}", .{pin});
var dir = try std.fs.openDirAbsolute(DIR, .{});
defer dir.close();
var file = dir.openFile(EXPORT, .{ .mode = .write_only }) catch |err| {
log.err("unable to open export `{s}` `{s}`", .{ DIR, EXPORT });
return err;
};
defer file.close();
const pinname = std.fmt.comptimePrint("{}", .{pin});
file.writeAll(pinname) catch |err| switch (err) {
error.DeviceBusy => {
// The internet seems to think this is the error when it's already
// exported... let's see if it's right.
},
else => return err,
};
 
const pin_dir = std.fmt.comptimePrint("gpio{}", .{pin});
var direction_dir = dir.openDir(pin_dir, .{}) catch |err| {
log.err("unable to open pindir `{s}` `{s}`", .{ DIR, pin_dir });
return err;
};
defer direction_dir.close();
var direction_file = try direction_dir.openFile(DIRECTION, .{ .mode = .write_only });
defer direction_file.close();
try direction_file.writeAll("out");
}
 
const PinLevel = enum {
low,
high,
};
 
fn pinSet(comptime pin: u16, comptime level: PinLevel) !void {
var dir = try std.fs.openDirAbsolute(DIR, .{});
defer dir.close();
const pinvalue = std.fmt.comptimePrint("gpio{}/value", .{pin});
var value = try dir.openFile(pinvalue, .{ .mode = .read_write });
defer value.close();
try value.writeAll(if (level == .high) "1" else "0");
}
 
fn pinLow(comptime pin: u16) !void {
try pinSet(pin, .low);
}
 
fn pinHigh(comptime pin: u16) !void {
try pinSet(pin, .high);
}
 
fn init() !void {
inline for (PINS) |pin| {
try exportPin(pin);
}
}
 
pub fn main() !void {
try init();
 
log.err("time to RAVE", .{});
for (0..10) |_| {
std.time.sleep(1 * 1000 * 1000 * 1000);
inline for (PINS) |pin| try pinHigh(pin);
std.time.sleep(1 * 1000 * 1000 * 1000);
inline for (PINS) |pin| try pinLow(pin);
}
}
 
const std = @import("std");
const log = std.log;