aboutsummaryrefslogtreecommitdiff
path: root/main/pbdrv.h
diff options
context:
space:
mode:
Diffstat (limited to 'main/pbdrv.h')
-rw-r--r--main/pbdrv.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/pbdrv.h b/main/pbdrv.h
index d0d70c2..0b4ca21 100644
--- a/main/pbdrv.h
+++ b/main/pbdrv.h
@@ -4,7 +4,7 @@
/**
* This is the RP2040 puzzle bus driver. This file is no longer inside
- * lib/pbdrv/drv/rp2040 as it is tightly coupled to both the pico-sdk and
+ * lib/pb//rp2040 as it is tightly coupled to both the pico-sdk and
* freertos functions. I have tried to get FreeRTOS to play nicely with the
* CMake subproject layout, but the pico-sdk and the rp2040 port of freertos
* both rely on CMake's import() functionality, which makes using FreeRTOS in a
@@ -19,7 +19,7 @@ extern "C" {
#endif
//! puzzle bus driver setup
-void pbdrv_setup();
+void pb_setup();
/**
* While the RP2040's datasheet claims it supports multi-master configurations
@@ -33,7 +33,7 @@ void pbdrv_setup();
* the time period between the invocation of this function and the bus becoming
* idle (and the message is sent).
*/
-void pbdrv_i2c_send(i2c_addr_t addr, const uint8_t * buf, size_t sz);
+void pb_i2c_send(i2c_addr_t addr, const uint8_t * buf, size_t sz);
#ifdef __cplusplus
}