Added fsdata_custom.c in order to avoid compilation errors

This commit is contained in:
xoreo
2023-11-06 14:36:21 +01:00
parent cfe7af96eb
commit 7373f05a6f
6 changed files with 2369 additions and 14 deletions

View File

@@ -1,14 +1 @@
/*
* lcd_api.h
*
* Created on: 6 Nov 2023
* Author: Tim
*/
#ifndef INC_LCD_API_H_
#define INC_LCD_API_H_
void display_bmp_array(const uint8_t bmp_data, uint16_t x_pos, uint16_t y_pos);
void display_text(const char * text, );
#endif /* INC_LCD_API_H_ */

View File

@@ -108,7 +108,9 @@ int main(void)
MX_LWIP_Init();
MX_QUADSPI_Init();
/* USER CODE BEGIN 2 */
HAL_GPIO_WritePin(LCD_BL_CTRL_GPIO_Port,LCD_BL_CTRL_Pin,GPIO_PIN_SET);
/* Assert display enable LCD_DISP pin */
HAL_GPIO_WritePin(LCD_DISP_GPIO_Port, LCD_DISP_Pin, GPIO_PIN_SET);
/* USER CODE END 2 */
/* Infinite loop */