aboutsummaryrefslogtreecommitdiffstats
path: root/src/stm32f0/can.h
diff options
context:
space:
mode:
authorEug Krashtan <eug.krashtan@gmail.com>2019-12-28 13:29:10 +0200
committerKevin O'Connor <kevin@koconnor.net>2020-01-14 17:08:01 -0500
commitb70416167b9abdcafacea81e9ef92c509360f735 (patch)
tree7cf36ea0ea19ba2058c7a7457483c5d13eaab9b0 /src/stm32f0/can.h
parenta34dbc7029fc9bbaabf8c13b2ef8f5f4052c12a2 (diff)
downloadkutter-b70416167b9abdcafacea81e9ef92c509360f735.tar.gz
kutter-b70416167b9abdcafacea81e9ef92c509360f735.tar.xz
kutter-b70416167b9abdcafacea81e9ef92c509360f735.zip
stm32f0: Remove hal based stm32f0 implementation
Signed-off-by: Eug Krashtan <eug.krashtan@gmail.com> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stm32f0/can.h')
-rw-r--r--src/stm32f0/can.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/stm32f0/can.h b/src/stm32f0/can.h
deleted file mode 100644
index 6b3cb2a4..00000000
--- a/src/stm32f0/can.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef CORE_INC_CAN_H_
-#define CORE_INC_CAN_H_
-
-// Read UUID (6bytes)
-#define PKT_ID_UUID (0x321)
-// Set address (2bytes) to UUID (6b)
-#define PKT_ID_SET (0x322)
-// UUID response from slave (6bytes)
-#define PKT_ID_UUID_RESP (0x323)
-
-#define STM32_UUID_ADDR (0x1FFFF7AC)
-#define SHORT_UUID_LEN (6)
-
-void CanInit(void);
-void CanTransmit(uint32_t id, uint32_t dlc, uint8_t *pkt);
-
-#endif /* CORE_INC_CAN_H_ */