summaryrefslogtreecommitdiff
path: root/n/avr/proto/proto.h
diff options
context:
space:
mode:
Diffstat (limited to 'n/avr/proto/proto.h')
-rw-r--r--n/avr/proto/proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/n/avr/proto/proto.h b/n/avr/proto/proto.h
index c52bb35..a9a97a1 100644
--- a/n/avr/proto/proto.h
+++ b/n/avr/proto/proto.h
@@ -29,12 +29,12 @@
/** Protocol callback function. Take the command and the arguments. Must be
* defined by the user. */
void
-proto_callback (uint8_t cmd, uint8_t size, uint8_t *args);
+AC_PROTO_CALLBACK (uint8_t cmd, uint8_t size, uint8_t *args);
/** Protocol putc function. Take a char to send. Must be defined by the
* user. */
void
-proto_putc (uint8_t c);
+AC_PROTO_PUTC (uint8_t c);
/* +AutoDec */