Fixed improper _

This commit is contained in:
Kevin Thomas
2026-04-11 10:52:10 -04:00
parent 0cd97b908d
commit 0ba55275e0
70 changed files with 603 additions and 603 deletions
+2 -2
View File
@@ -59,7 +59,7 @@ static void _core1_main(void) {
*
* @param counter Pointer to the running counter (post-incremented)
*/
static void _send_and_print(uint32_t *counter) {
static void send_and_print(uint32_t *counter) {
multicore_driver_push(*counter);
uint32_t response = multicore_driver_pop();
printf("core0 sent: %lu, core1 returned: %lu\r\n",
@@ -73,5 +73,5 @@ int main(void) {
multicore_driver_launch(_core1_main);
uint32_t counter = 0;
while (true)
_send_and_print(&counter);
send_and_print(&counter);
}