diff options
author | Ben V. Brown <[email protected]> | 2021-01-17 09:43:55 +1100 |
---|---|---|
committer | Ben V. Brown <[email protected]> | 2021-01-17 09:43:55 +1100 |
commit | 184b2c909fae43c10261c0288cfa4e021b3f5a3d (patch) | |
tree | f0c6b83e5b5af721f4a6a0580107ca1b5a0edac1 /source/Core/BSP/Miniware/IRQ.h | |
parent | ad37c752cc4a59ee5ca8e22bce70a7078e1bd46f (diff) | |
download | IronOS-184b2c909fae43c10261c0288cfa4e021b3f5a3d.tar.gz IronOS-184b2c909fae43c10261c0288cfa4e021b3f5a3d.zip |
./workspace/TS100 -> ./source/
Diffstat (limited to 'source/Core/BSP/Miniware/IRQ.h')
-rw-r--r-- | source/Core/BSP/Miniware/IRQ.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/source/Core/BSP/Miniware/IRQ.h b/source/Core/BSP/Miniware/IRQ.h new file mode 100644 index 00000000..bcd42d04 --- /dev/null +++ b/source/Core/BSP/Miniware/IRQ.h @@ -0,0 +1,32 @@ +/*
+ * Irqs.h
+ *
+ * Created on: 30 May 2020
+ * Author: Ralim
+ */
+
+#ifndef BSP_MINIWARE_IRQ_H_
+#define BSP_MINIWARE_IRQ_H_
+
+#include "BSP.h"
+#include "stm32f1xx_hal.h"
+#include "I2C_Wrapper.hpp"
+#include "Setup.h"
+#include "main.hpp"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+void HAL_ADCEx_InjectedConvCpltCallback(ADC_HandleTypeDef *hadc);
+void HAL_I2C_ErrorCallback(I2C_HandleTypeDef *hi2c);
+void HAL_I2C_AbortCpltCallback(I2C_HandleTypeDef *hi2c);
+void HAL_I2C_MasterTxCpltCallback(I2C_HandleTypeDef *hi2c);
+void HAL_I2C_MasterRxCpltCallback(I2C_HandleTypeDef *hi2c);
+void HAL_I2C_MemTxCpltCallback(I2C_HandleTypeDef *hi2c);
+void HAL_I2C_MemRxCpltCallback(I2C_HandleTypeDef *hi2c);
+void HAL_GPIO_EXTI_Callback(uint16_t);
+
+#ifdef __cplusplus
+}
+#endif
+#endif /* BSP_MINIWARE_IRQ_H_ */
|