Added Keil project

Project can now be built and flashed with Keil uVision as well.
This commit is contained in:
EmanuelFeru
2020-02-16 21:58:15 +01:00
parent 9e943feb8e
commit 872d86f021
15 changed files with 6827 additions and 55 deletions

View File

@@ -19,7 +19,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
// Define to prevent recursive inclusion
#ifndef DEFINES_H
#define DEFINES_H
#include "stm32f1xx_hal.h"
#define LEFT_HALL_U_PIN GPIO_PIN_5
@@ -180,4 +183,7 @@ void Nunchuk_Init(void);
void Nunchuk_Read(void);
uint8_t Nunchuk_Ping(void);
void PPM_Init(void);
void PPM_ISR_Callback(void);
void PPM_ISR_Callback(void);
#endif