Cleanups.

This commit is contained in:
Jonathan Naylor 2024-10-08 15:33:53 +01:00
parent fb5ce0101d
commit e6fbcd9c1a
2 changed files with 3 additions and 10 deletions

View File

@ -20,9 +20,8 @@
#include "Config.h" #include "Config.h"
#include "Globals.h" #include "Globals.h"
#if defined(MADEBYMAKEFILE) // TODO XXX need to find a way to get the git revision
#include "GitVersion.h" // #include "GitVersion.h"
#endif
#include "SerialPort.h" #include "SerialPort.h"
#include "Version.h" #include "Version.h"

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2015,2016,2020 by Jonathan Naylor G4KLX * Copyright (C) 2015,2016,2020,2024 by Jonathan Naylor G4KLX
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -19,13 +19,7 @@
#if !defined(UTILS_H) #if !defined(UTILS_H)
#define UTILS_H #define UTILS_H
#if defined(STM32F4XX)
#include "stm32f4xx.h"
#elif defined(STM32F7XX)
#include "stm32f7xx.h"
#else
#include <Arduino.h> #include <Arduino.h>
#endif
uint8_t countBits8(uint8_t bits); uint8_t countBits8(uint8_t bits);