- Initial commit of base firmware - which is still very raw

This commit is contained in:
2025-08-18 09:46:18 +02:00
parent 9d7afd129f
commit 7da2b4415f
75 changed files with 12872 additions and 0 deletions

35
Firmware/Display_Init.h Normal file
View File

@@ -0,0 +1,35 @@
/*
* Display_Init.h
*
* Created: Sun Mar 21 2021 12:51:58
* Author Chris
*/
#ifndef DISPLAY_INIT_H_
#define DISPLAY_INIT_H_
// ============================================================================================
// Includes
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include "pico/types.h"
// ============================================================================================
// Defines
// ============================================================================================
// Datatypes
// ============================================================================================
// Function Declarations
void Display_Init_GPIOs(void);
void Display_Init_Reset(void);
void Display_Init_WakeUp(void);
void Display_Init_Registers(void);
#endif /* DISPLAY_INIT_H_ */