84 lines
2.4 KiB
C
84 lines
2.4 KiB
C
/* USER CODE BEGIN Header */
|
|
/**
|
|
******************************************************************************
|
|
* @file : main.h
|
|
* @brief : Header for main.c file.
|
|
* This file contains the common defines of the application.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2025 STMicroelectronics.
|
|
* All rights reserved.
|
|
*
|
|
* This software is licensed under terms that can be found in the LICENSE file
|
|
* in the root directory of this software component.
|
|
* If no LICENSE file comes with this software, it is provided AS-IS.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
/* USER CODE END Header */
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __MAIN_H
|
|
#define __MAIN_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "stm32f4xx_hal.h"
|
|
|
|
/* Exported functions prototypes ---------------------------------------------*/
|
|
void Error_Handler(void);
|
|
|
|
|
|
void Data_Pins_Init(int as_output);
|
|
void Address_Pins_Init(void);
|
|
void Command_Pins_Init(void);
|
|
|
|
void Write_Address(int address);
|
|
int Receive_Data(void);
|
|
void Write_Data(int value);
|
|
void Write_Command_Pins(int CE, int OE, int WE);
|
|
|
|
void Write_Command(int addr, int data);
|
|
int Flash_ReadByte(int addr);
|
|
void Enter_Device_ID(int *manufacturer, int *device);
|
|
void Dump_Flash_UART(int visual_format);
|
|
void Chip_Erase(void);
|
|
void Chip_Program_Byte(int addr, int data);
|
|
void Flash_From_UART(void);
|
|
|
|
void debug_print(const char *msg);
|
|
|
|
/* USER CODE BEGIN EFP */
|
|
|
|
/* USER CODE END EFP */
|
|
|
|
/* Private defines -----------------------------------------------------------*/
|
|
#define B1_Pin GPIO_PIN_13
|
|
#define B1_GPIO_Port GPIOC
|
|
#define USART_TX_Pin GPIO_PIN_2
|
|
#define USART_TX_GPIO_Port GPIOA
|
|
#define USART_RX_Pin GPIO_PIN_3
|
|
#define USART_RX_GPIO_Port GPIOA
|
|
#define LD2_Pin GPIO_PIN_5
|
|
#define LD2_GPIO_Port GPIOA
|
|
#define TMS_Pin GPIO_PIN_13
|
|
#define TMS_GPIO_Port GPIOA
|
|
#define TCK_Pin GPIO_PIN_14
|
|
#define TCK_GPIO_Port GPIOA
|
|
#define SWO_Pin GPIO_PIN_3
|
|
#define SWO_GPIO_Port GPIOB
|
|
|
|
/* USER CODE BEGIN Private defines */
|
|
|
|
/* USER CODE END Private defines */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __MAIN_H */
|