Loading...
Searching...
No Matches
canpub.h
1// ALLOW FORMATTING
2#ifndef CANPUB_H
3#define CANPUB_H
4
5#include "topic.h"
6#include "can.h"
7
8#define CAN_MSG_LENGTH 8
9
10extern Topic *canTopic;
11
12void vCanTransmit(void *pvParameters);
13void vCanReceive(void *pvParameters);
14void CAN_setPeripheral(CAN_t *peripheral);
15void pubCanInterrupt();
16
17#endif
Definition can.h:28
Public representation of a Topic.
Definition topic.h:71