1
0
Fork 0

Normalise include statements in core code (#11153)

* Normalise include statements in core code

* Missed one
This commit is contained in:
Ryan 2020-12-11 13:45:24 +11:00 committed by GitHub
parent 5b5d74a267
commit 501f2fdef1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
60 changed files with 99 additions and 79 deletions

View file

@ -24,7 +24,7 @@ SOFTWARE.
#ifndef LCD_BACKLIGHT_H_
#define LCD_BACKLIGHT_H_
#include "stdint.h"
#include <stdint.h>
// Helper macros for storing hue, staturation and intensity as unsigned integers
#define LCD_COLOR(hue, saturation, intensity) (hue << 16 | saturation << 8 | intensity)

View file

@ -22,7 +22,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include "gfx.h"
#include "math.h"
#include <math.h>
#include "led_backlight_keyframes.h"
static uint8_t fade_led_color(keyframe_animation_t* animation, int from, int to) {

View file

@ -26,7 +26,7 @@ SOFTWARE.
#include "visualizer.h"
#include <string.h>
#ifdef PROTOCOL_CHIBIOS
# include "ch.h"
# include <ch.h>
#endif
#include "gfx.h"