working rfid and i2c
This commit is contained in:
parent
0b0d0f4875
commit
edd2e31321
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
Debug/
|
||||||
196
Core/Src/main.c
196
Core/Src/main.c
@ -48,11 +48,48 @@ SPI_HandleTypeDef hspi1;
|
|||||||
UART_HandleTypeDef huart2;
|
UART_HandleTypeDef huart2;
|
||||||
|
|
||||||
/* USER CODE BEGIN PV */
|
/* USER CODE BEGIN PV */
|
||||||
|
/* Bitwise changed buffer */
|
||||||
|
uint8_t delta;
|
||||||
|
|
||||||
|
#define DELTA_KP_BIT 0
|
||||||
|
#define DELTA_BTN_BIT 1
|
||||||
|
#define DELTA_CARD_PRESENT_BIT 2
|
||||||
|
#define DELTA_CARD_ID_BIT 3
|
||||||
|
|
||||||
|
uint8_t i2c_register;
|
||||||
|
|
||||||
|
// TODO: this doesn't need to be high and low, it can simply send 2 bytes
|
||||||
|
#define I2C_REGISTER_DELTA 1
|
||||||
|
#define I2C_REGISTER_KEYPAD 2
|
||||||
|
#define I2C_REGISTER_BUTTON 3
|
||||||
|
#define I2C_REGISTER_RFID_PRESENT 4
|
||||||
|
#define I2C_REGISTER_RFID_ID 5
|
||||||
|
|
||||||
|
// Keeps track of the current state of receiving on the I2C bus.
|
||||||
|
uint8_t i2c_reciving_status;
|
||||||
|
|
||||||
|
#define I2C_RECEIVING_NONE 0
|
||||||
|
#define I2C_RECEIVING_REGISTER 1
|
||||||
|
|
||||||
|
// Keeps track of the current state of transmitting on the I2C bus.
|
||||||
|
uint8_t i2c_transmitting_status;
|
||||||
|
|
||||||
|
#define I2C_TRANSMITTING_NONE 0
|
||||||
|
#define I2C_TRANSMITTING_REGISTER 1
|
||||||
|
|
||||||
|
|
||||||
uint16_t old_keypad_state;
|
uint16_t old_keypad_state;
|
||||||
uint16_t keypad_state;
|
uint16_t keypad_state;
|
||||||
|
|
||||||
uint16_t old_button_state;
|
uint16_t old_button_state;
|
||||||
uint16_t button_state;
|
uint16_t button_state;
|
||||||
|
|
||||||
|
uint8_t old_card_present;
|
||||||
|
uint8_t card_present;
|
||||||
|
|
||||||
|
#define CARD_ID_LEN 4
|
||||||
|
uint8_t old_card_id[CARD_ID_LEN] = {0};
|
||||||
|
uint8_t card_id[CARD_ID_LEN] = {0};
|
||||||
/* USER CODE END PV */
|
/* USER CODE END PV */
|
||||||
|
|
||||||
/* Private function prototypes -----------------------------------------------*/
|
/* Private function prototypes -----------------------------------------------*/
|
||||||
@ -77,6 +114,7 @@ void scan_keypad(void);
|
|||||||
void scan_buttons(void);
|
void scan_buttons(void);
|
||||||
|
|
||||||
void send_iterupt(void);
|
void send_iterupt(void);
|
||||||
|
void rfid_check_card(void);
|
||||||
|
|
||||||
|
|
||||||
void printBinary(uint16_t num) {
|
void printBinary(uint16_t num) {
|
||||||
@ -89,9 +127,7 @@ void printBinary(uint16_t num) {
|
|||||||
|
|
||||||
/* Private user code ---------------------------------------------------------*/
|
/* Private user code ---------------------------------------------------------*/
|
||||||
/* USER CODE BEGIN 0 */
|
/* USER CODE BEGIN 0 */
|
||||||
uint8_t data[8] = {0};
|
|
||||||
|
|
||||||
uint16_t recv_cnt = 0;
|
|
||||||
/* USER CODE END 0 */
|
/* USER CODE END 0 */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -130,26 +166,32 @@ int main(void)
|
|||||||
init_keypad();
|
init_keypad();
|
||||||
init_buttons();
|
init_buttons();
|
||||||
rc522_init();
|
rc522_init();
|
||||||
printf("Hello, world!\r\n");
|
HAL_I2C_EnableListen_IT(&hi2c1);
|
||||||
|
printf("initialized\r\n");
|
||||||
/* USER CODE END 2 */
|
/* USER CODE END 2 */
|
||||||
|
|
||||||
/* Infinite loop */
|
/* Infinite loop */
|
||||||
/* USER CODE BEGIN WHILE */
|
/* USER CODE BEGIN WHILE */
|
||||||
uint8_t rfid_id[4] = {0};
|
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
HAL_Delay(500);
|
// HAL_Delay(500);
|
||||||
// scan_keypad();
|
scan_keypad();
|
||||||
// scan_buttons();
|
scan_buttons();
|
||||||
|
rfid_check_card();
|
||||||
|
// send_iterupt();
|
||||||
|
|
||||||
|
// // ensure we are listening for i2c requests
|
||||||
|
// if (i2c_reciving_status == I2C_RECEIVING_NONE) {
|
||||||
|
// // listen for a register value
|
||||||
|
// HAL_I2C_Slave_Seq_Receive_IT(&hi2c1, &i2c_register, 1, I2C_NEXT_FRAME);
|
||||||
|
// i2c_reciving_status = I2C_RECEIVING_REGISTER;
|
||||||
|
// }
|
||||||
// printBinary(keypad_state);
|
// printBinary(keypad_state);
|
||||||
// printf("s: %d\r\n", keypad_state);
|
// printf("s: %d\r\n", keypad_state);
|
||||||
// printf("r: %d\r\n", recv_cnt);
|
// printf("r: %d\r\n", recv_cnt);
|
||||||
// printf("d: %d %d %d %d, %d %d %d %d\r\n", data[0], data[1], data[2], data[3], data[4], data[5], data[6], data[7]);
|
// printf("d: %d %d %d %d, %d %d %d %d\r\n", data[0], data[1], data[2], data[3], data[4], data[5], data[6], data[7]);
|
||||||
// HAL_I2C_Slave_Receive_IT(&hi2c1, (uint8_t*)&data, 8);
|
// HAL_I2C_Slave_Receive_IT(&hi2c1, (uint8_t*)&data, 8);
|
||||||
|
|
||||||
if(rc522_checkCard(rfid_id)) {
|
|
||||||
printf("0x%x 0x%x 0x%x 0x%x\r\n", rfid_id[0], rfid_id[1], rfid_id[2], rfid_id[3]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* USER CODE END WHILE */
|
/* USER CODE END WHILE */
|
||||||
|
|
||||||
@ -458,12 +500,112 @@ PUTCHAR_PROTOTYPE
|
|||||||
return ch;
|
return ch;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void HAL_I2C_ListenCpltCallback(I2C_HandleTypeDef *hi2c)
|
||||||
|
{
|
||||||
|
i2c_register = 0;
|
||||||
|
HAL_I2C_EnableListen_IT(hi2c);
|
||||||
|
}
|
||||||
|
|
||||||
|
void HAL_I2C_AddrCallback(I2C_HandleTypeDef *hi2c, uint8_t TransferDirection, uint16_t AddrMatchCode) {
|
||||||
|
if (TransferDirection == I2C_DIRECTION_TRANSMIT) {
|
||||||
|
HAL_I2C_Slave_Seq_Receive_IT(hi2c, &i2c_register, 1, I2C_NEXT_FRAME);
|
||||||
|
} else {
|
||||||
|
send_register();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t send_data[2];
|
||||||
|
void send_register(void) {
|
||||||
|
switch (i2c_register) {
|
||||||
|
case I2C_REGISTER_DELTA:
|
||||||
|
HAL_I2C_Slave_Seq_Transmit_IT(&hi2c1, &delta, 1, I2C_NEXT_FRAME);
|
||||||
|
break;
|
||||||
|
case I2C_REGISTER_KEYPAD:
|
||||||
|
send_data[0] = keypad_state & 0xFF;
|
||||||
|
send_data[1] = keypad_state >> 8;
|
||||||
|
HAL_I2C_Slave_Seq_Transmit_IT(&hi2c1, &send_data, 2, I2C_NEXT_FRAME);
|
||||||
|
delta &= ~(1 << DELTA_KP_BIT);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case I2C_REGISTER_BUTTON:
|
||||||
|
send_data[0] = button_state & 0xFF;
|
||||||
|
send_data[1] = button_state >> 8;
|
||||||
|
HAL_I2C_Slave_Seq_Transmit_IT(&hi2c1, &send_data, 2, I2C_NEXT_FRAME);
|
||||||
|
delta &= ~(1 << DELTA_BTN_BIT);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case I2C_REGISTER_RFID_PRESENT:
|
||||||
|
HAL_I2C_Slave_Seq_Transmit_IT(&hi2c1, &card_present, 1, I2C_NEXT_FRAME);
|
||||||
|
delta &= ~(1 << DELTA_CARD_PRESENT_BIT);
|
||||||
|
break;
|
||||||
|
case I2C_REGISTER_RFID_ID:
|
||||||
|
HAL_I2C_Slave_Seq_Transmit_IT(&hi2c1, card_id, 4, I2C_NEXT_FRAME);
|
||||||
|
delta &= ~(1 << DELTA_CARD_ID_BIT);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void HAL_I2C_SlaveRxCpltCallback(I2C_HandleTypeDef *hi2c)
|
void HAL_I2C_SlaveRxCpltCallback(I2C_HandleTypeDef *hi2c)
|
||||||
{
|
{
|
||||||
recv_cnt += 1;
|
// uint8_t data[32];
|
||||||
|
// int len = sprintf(data, "reg: %d", i2c_register);
|
||||||
|
// HAL_UART_Transmit(&huart2, data, len, 0xFFFF);
|
||||||
|
send_register();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void HAL_I2C_SlaveTxCpltCallback(I2C_HandleTypeDef *hi2c)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//uint8_t send_value;
|
||||||
|
//void HAL_I2C_SlaveRxCpltCallback(I2C_HandleTypeDef* hi2c)
|
||||||
|
//{
|
||||||
|
// printf("cb\r\n");
|
||||||
|
//
|
||||||
|
// if (i2c_reciving_status == I2C_RECEIVING_REGISTER) {
|
||||||
|
// i2c_transmitting_status = I2C_TRANSMITTING_REGISTER;
|
||||||
|
//
|
||||||
|
// switch (i2c_register) {
|
||||||
|
// case I2C_REGISTER_DELTA:
|
||||||
|
// HAL_I2C_Slave_Seq_Transmit_IT(&hi2c1, &delta, 1, I2C_NEXT_FRAME);
|
||||||
|
// break;
|
||||||
|
// case I2C_REGISTER_KEYPAD_L:
|
||||||
|
// send_value = keypad_state & 0xFF;
|
||||||
|
// HAL_I2C_Slave_Seq_Transmit_IT(&hi2c1, &send_value, 1, I2C_NEXT_FRAME);
|
||||||
|
// break;
|
||||||
|
// case I2C_REGISTER_KEYPAD_H:
|
||||||
|
// send_value = keypad_state >> 8;
|
||||||
|
// HAL_I2C_Slave_Transmit_IT(&hi2c1, &send_value, 1);
|
||||||
|
// break;
|
||||||
|
//
|
||||||
|
// case I2C_REGISTER_BUTTON_L:
|
||||||
|
// send_value = button_state & 0xFF;
|
||||||
|
// HAL_I2C_Slave_Transmit_IT(&hi2c1, &send_value, 1);
|
||||||
|
// break;
|
||||||
|
// case I2C_REGISTER_BUTTON_H:
|
||||||
|
// send_value = button_state >> 8;
|
||||||
|
// HAL_I2C_Slave_Transmit_IT(&hi2c1, &send_value, 1);
|
||||||
|
// break;
|
||||||
|
//
|
||||||
|
// case I2C_REGISTER_RFID_PRESENT:
|
||||||
|
// HAL_I2C_Slave_Transmit_IT(&hi2c1, &card_present, 1);
|
||||||
|
// break;
|
||||||
|
// case I2C_REGISTER_RFID_ID:
|
||||||
|
// HAL_I2C_Slave_Transmit_IT(&hi2c1, card_id, 4);
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// // TODO: handle any other receiving status possibilities
|
||||||
|
//
|
||||||
|
// // clear receiving status
|
||||||
|
// i2c_reciving_status = I2C_RECEIVING_NONE;
|
||||||
|
//}
|
||||||
|
|
||||||
void init_keypad(void)
|
void init_keypad(void)
|
||||||
{
|
{
|
||||||
HAL_GPIO_WritePin(KP_C1_GPIO_Port, KP_C1_Pin, GPIO_PIN_SET);
|
HAL_GPIO_WritePin(KP_C1_GPIO_Port, KP_C1_Pin, GPIO_PIN_SET);
|
||||||
@ -511,6 +653,10 @@ void scan_keypad(void)
|
|||||||
keypad_state |= (HAL_GPIO_ReadPin(KP_R3_GPIO_Port, KP_R3_Pin) == GPIO_PIN_RESET) << 14;
|
keypad_state |= (HAL_GPIO_ReadPin(KP_R3_GPIO_Port, KP_R3_Pin) == GPIO_PIN_RESET) << 14;
|
||||||
keypad_state |= (HAL_GPIO_ReadPin(KP_R4_GPIO_Port, KP_R4_Pin) == GPIO_PIN_RESET) << 15;
|
keypad_state |= (HAL_GPIO_ReadPin(KP_R4_GPIO_Port, KP_R4_Pin) == GPIO_PIN_RESET) << 15;
|
||||||
HAL_GPIO_WritePin(KP_C4_GPIO_Port, KP_C4_Pin, GPIO_PIN_SET);
|
HAL_GPIO_WritePin(KP_C4_GPIO_Port, KP_C4_Pin, GPIO_PIN_SET);
|
||||||
|
|
||||||
|
if (keypad_state != old_keypad_state) {
|
||||||
|
delta |= 1 << DELTA_KP_BIT;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void scan_buttons(void)
|
void scan_buttons(void)
|
||||||
@ -538,11 +684,37 @@ void scan_buttons(void)
|
|||||||
button_state |= (HAL_GPIO_ReadPin(ROW3_GPIO_Port, ROW3_Pin) == GPIO_PIN_RESET) << 10;
|
button_state |= (HAL_GPIO_ReadPin(ROW3_GPIO_Port, ROW3_Pin) == GPIO_PIN_RESET) << 10;
|
||||||
button_state |= (HAL_GPIO_ReadPin(ROW4_GPIO_Port, ROW4_Pin) == GPIO_PIN_RESET) << 11;
|
button_state |= (HAL_GPIO_ReadPin(ROW4_GPIO_Port, ROW4_Pin) == GPIO_PIN_RESET) << 11;
|
||||||
HAL_GPIO_WritePin(COL3_GPIO_Port, COL3_Pin, GPIO_PIN_RESET);
|
HAL_GPIO_WritePin(COL3_GPIO_Port, COL3_Pin, GPIO_PIN_RESET);
|
||||||
|
|
||||||
|
// TODO: read the touch sensors here too!
|
||||||
|
|
||||||
|
if (button_state != old_button_state) {
|
||||||
|
delta |= 1 << DELTA_KP_BIT;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void rfid_check_card() {
|
||||||
|
old_card_present = card_present;
|
||||||
|
for (int i = 0; i < CARD_ID_LEN; i++) {
|
||||||
|
old_card_id[i] = card_id[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
card_present = rc522_checkCard(card_id);
|
||||||
|
|
||||||
|
// set delta
|
||||||
|
if (old_card_present != card_present) {
|
||||||
|
delta |= 1 << DELTA_CARD_PRESENT_BIT;
|
||||||
|
}
|
||||||
|
for (int i = 0; i < CARD_ID_LEN; i++) {
|
||||||
|
if (old_card_id[i] != card_id[i]) {
|
||||||
|
delta |= 1 << DELTA_CARD_ID_BIT;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void send_iterupt(void)
|
void send_iterupt(void)
|
||||||
{
|
{
|
||||||
|
HAL_GPIO_WritePin(INT_GPIO_Port, INT_Pin, delta != 0);
|
||||||
}
|
}
|
||||||
/* USER CODE END 4 */
|
/* USER CODE END 4 */
|
||||||
|
|
||||||
|
|||||||
@ -1,15 +0,0 @@
|
|||||||
../Core/Src/RFID.c:26:6:spi_cs_rfid_write 1
|
|
||||||
../Core/Src/RFID.c:31:9:rc522_regRead8 1
|
|
||||||
../Core/Src/RFID.c:48:6:rc522_regWrite8 1
|
|
||||||
../Core/Src/RFID.c:60:6:rc522_setBit 1
|
|
||||||
../Core/Src/RFID.c:68:6:rc522_clearBit 1
|
|
||||||
../Core/Src/RFID.c:76:6:rc522_reset 1
|
|
||||||
../Core/Src/RFID.c:84:6:rc522_antennaON 2
|
|
||||||
../Core/Src/RFID.c:97:6:rc522_checkCard 2
|
|
||||||
../Core/Src/RFID.c:115:6:rc522_request 3
|
|
||||||
../Core/Src/RFID.c:131:6:rc522_toCard 18
|
|
||||||
../Core/Src/RFID.c:232:6:rc522_antiColl 4
|
|
||||||
../Core/Src/RFID.c:263:6:rc522_halt 1
|
|
||||||
../Core/Src/RFID.c:275:6:rc522_calculateCRC 4
|
|
||||||
../Core/Src/RFID.c:304:6:rc522_compareIds 3
|
|
||||||
../Core/Src/RFID.c:317:6:rc522_init 1
|
|
||||||
@ -1,69 +0,0 @@
|
|||||||
Core/Src/RFID.o: ../Core/Src/RFID.c ../Core/Inc/RFID.h ../Core/Inc/main.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Core/Inc/RFID.h:
|
|
||||||
../Core/Inc/main.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,15 +0,0 @@
|
|||||||
../Core/Src/RFID.c:26:6:spi_cs_rfid_write 16 static
|
|
||||||
../Core/Src/RFID.c:31:9:rc522_regRead8 32 static
|
|
||||||
../Core/Src/RFID.c:48:6:rc522_regWrite8 24 static
|
|
||||||
../Core/Src/RFID.c:60:6:rc522_setBit 16 static
|
|
||||||
../Core/Src/RFID.c:68:6:rc522_clearBit 16 static
|
|
||||||
../Core/Src/RFID.c:76:6:rc522_reset 8 static
|
|
||||||
../Core/Src/RFID.c:84:6:rc522_antennaON 24 static
|
|
||||||
../Core/Src/RFID.c:97:6:rc522_checkCard 32 static
|
|
||||||
../Core/Src/RFID.c:115:6:rc522_request 48 static
|
|
||||||
../Core/Src/RFID.c:131:6:rc522_toCard 48 static
|
|
||||||
../Core/Src/RFID.c:232:6:rc522_antiColl 40 static
|
|
||||||
../Core/Src/RFID.c:263:6:rc522_halt 24 static
|
|
||||||
../Core/Src/RFID.c:275:6:rc522_calculateCRC 40 static
|
|
||||||
../Core/Src/RFID.c:304:6:rc522_compareIds 24 static
|
|
||||||
../Core/Src/RFID.c:317:6:rc522_init 8 static
|
|
||||||
@ -1,15 +0,0 @@
|
|||||||
../Core/Src/main.c:82:6:printBinary 2
|
|
||||||
../Core/Src/main.c:101:5:main 2
|
|
||||||
../Core/Src/main.c:165:6:SystemClock_Config 3
|
|
||||||
../Core/Src/main.c:204:13:MX_I2C1_Init 4
|
|
||||||
../Core/Src/main.c:252:13:MX_SPI1_Init 2
|
|
||||||
../Core/Src/main.c:292:13:MX_USART2_UART_Init 5
|
|
||||||
../Core/Src/main.c:340:13:MX_GPIO_Init 1
|
|
||||||
../Core/Src/main.c:452:1:__io_putchar 1
|
|
||||||
../Core/Src/main.c:462:6:HAL_I2C_SlaveRxCpltCallback 1
|
|
||||||
../Core/Src/main.c:467:6:init_keypad 1
|
|
||||||
../Core/Src/main.c:475:6:init_buttons 1
|
|
||||||
../Core/Src/main.c:482:6:scan_keypad 16
|
|
||||||
../Core/Src/main.c:516:6:scan_buttons 12
|
|
||||||
../Core/Src/main.c:543:6:send_iterupt 1
|
|
||||||
../Core/Src/main.c:553:6:Error_Handler 1
|
|
||||||
@ -1,70 +0,0 @@
|
|||||||
Core/Src/main.o: ../Core/Src/main.c ../Core/Inc/main.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h \
|
|
||||||
../Core/Inc/RFID.h
|
|
||||||
../Core/Inc/main.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
../Core/Inc/RFID.h:
|
|
||||||
Binary file not shown.
@ -1,15 +0,0 @@
|
|||||||
../Core/Src/main.c:82:6:printBinary 24 static
|
|
||||||
../Core/Src/main.c:101:5:main 32 static
|
|
||||||
../Core/Src/main.c:165:6:SystemClock_Config 88 static
|
|
||||||
../Core/Src/main.c:204:13:MX_I2C1_Init 8 static
|
|
||||||
../Core/Src/main.c:252:13:MX_SPI1_Init 8 static
|
|
||||||
../Core/Src/main.c:292:13:MX_USART2_UART_Init 8 static
|
|
||||||
../Core/Src/main.c:340:13:MX_GPIO_Init 56 static
|
|
||||||
../Core/Src/main.c:452:1:__io_putchar 16 static
|
|
||||||
../Core/Src/main.c:462:6:HAL_I2C_SlaveRxCpltCallback 16 static
|
|
||||||
../Core/Src/main.c:467:6:init_keypad 8 static
|
|
||||||
../Core/Src/main.c:475:6:init_buttons 8 static
|
|
||||||
../Core/Src/main.c:482:6:scan_keypad 8 static
|
|
||||||
../Core/Src/main.c:516:6:scan_buttons 8 static
|
|
||||||
../Core/Src/main.c:543:6:send_iterupt 8 static
|
|
||||||
../Core/Src/main.c:553:6:Error_Handler 8 static,ignoring_inline_asm
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
../Core/Src/stm32g0xx_hal_msp.c:63:6:HAL_MspInit 1
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c:90:6:HAL_I2C_MspInit 3
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c:139:6:HAL_I2C_MspDeInit 2
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c:172:6:HAL_SPI_MspInit 2
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c:209:6:HAL_SPI_MspDeInit 2
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c:239:6:HAL_UART_MspInit 3
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c:286:6:HAL_UART_MspDeInit 2
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Core/Src/stm32g0xx_hal_msp.o: ../Core/Src/stm32g0xx_hal_msp.c \
|
|
||||||
../Core/Inc/main.h ../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Core/Inc/main.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,7 +0,0 @@
|
|||||||
../Core/Src/stm32g0xx_hal_msp.c:63:6:HAL_MspInit 16 static
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c:90:6:HAL_I2C_MspInit 80 static
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c:139:6:HAL_I2C_MspDeInit 16 static
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c:172:6:HAL_SPI_MspInit 56 static
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c:209:6:HAL_SPI_MspDeInit 16 static
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c:239:6:HAL_UART_MspInit 80 static
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c:286:6:HAL_UART_MspDeInit 16 static
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
../Core/Src/stm32g0xx_it.c:69:6:NMI_Handler 1
|
|
||||||
../Core/Src/stm32g0xx_it.c:84:6:HardFault_Handler 1
|
|
||||||
../Core/Src/stm32g0xx_it.c:99:6:SVC_Handler 1
|
|
||||||
../Core/Src/stm32g0xx_it.c:112:6:PendSV_Handler 1
|
|
||||||
../Core/Src/stm32g0xx_it.c:125:6:SysTick_Handler 1
|
|
||||||
../Core/Src/stm32g0xx_it.c:146:6:I2C1_IRQHandler 2
|
|
||||||
@ -1,70 +0,0 @@
|
|||||||
Core/Src/stm32g0xx_it.o: ../Core/Src/stm32g0xx_it.c ../Core/Inc/main.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h \
|
|
||||||
../Core/Inc/stm32g0xx_it.h
|
|
||||||
../Core/Inc/main.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
../Core/Inc/stm32g0xx_it.h:
|
|
||||||
Binary file not shown.
@ -1,6 +0,0 @@
|
|||||||
../Core/Src/stm32g0xx_it.c:69:6:NMI_Handler 8 static
|
|
||||||
../Core/Src/stm32g0xx_it.c:84:6:HardFault_Handler 8 static
|
|
||||||
../Core/Src/stm32g0xx_it.c:99:6:SVC_Handler 8 static
|
|
||||||
../Core/Src/stm32g0xx_it.c:112:6:PendSV_Handler 8 static
|
|
||||||
../Core/Src/stm32g0xx_it.c:125:6:SysTick_Handler 8 static
|
|
||||||
../Core/Src/stm32g0xx_it.c:146:6:I2C1_IRQHandler 8 static
|
|
||||||
@ -1,45 +0,0 @@
|
|||||||
################################################################################
|
|
||||||
# Automatically-generated file. Do not edit!
|
|
||||||
# Toolchain: GNU Tools for STM32 (12.3.rel1)
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
# Add inputs and outputs from these tool invocations to the build variables
|
|
||||||
C_SRCS += \
|
|
||||||
../Core/Src/RFID.c \
|
|
||||||
../Core/Src/main.c \
|
|
||||||
../Core/Src/stm32g0xx_hal_msp.c \
|
|
||||||
../Core/Src/stm32g0xx_it.c \
|
|
||||||
../Core/Src/syscalls.c \
|
|
||||||
../Core/Src/sysmem.c \
|
|
||||||
../Core/Src/system_stm32g0xx.c
|
|
||||||
|
|
||||||
C_DEPS += \
|
|
||||||
./Core/Src/RFID.d \
|
|
||||||
./Core/Src/main.d \
|
|
||||||
./Core/Src/stm32g0xx_hal_msp.d \
|
|
||||||
./Core/Src/stm32g0xx_it.d \
|
|
||||||
./Core/Src/syscalls.d \
|
|
||||||
./Core/Src/sysmem.d \
|
|
||||||
./Core/Src/system_stm32g0xx.d
|
|
||||||
|
|
||||||
OBJS += \
|
|
||||||
./Core/Src/RFID.o \
|
|
||||||
./Core/Src/main.o \
|
|
||||||
./Core/Src/stm32g0xx_hal_msp.o \
|
|
||||||
./Core/Src/stm32g0xx_it.o \
|
|
||||||
./Core/Src/syscalls.o \
|
|
||||||
./Core/Src/sysmem.o \
|
|
||||||
./Core/Src/system_stm32g0xx.o
|
|
||||||
|
|
||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
|
||||||
Core/Src/%.o Core/Src/%.su Core/Src/%.cyclo: ../Core/Src/%.c Core/Src/subdir.mk
|
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m0plus -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32G070xx -c -I../Core/Inc -I../Drivers/STM32G0xx_HAL_Driver/Inc -I../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32G0xx/Include -I../Drivers/CMSIS/Include -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@"
|
|
||||||
|
|
||||||
clean: clean-Core-2f-Src
|
|
||||||
|
|
||||||
clean-Core-2f-Src:
|
|
||||||
-$(RM) ./Core/Src/RFID.cyclo ./Core/Src/RFID.d ./Core/Src/RFID.o ./Core/Src/RFID.su ./Core/Src/main.cyclo ./Core/Src/main.d ./Core/Src/main.o ./Core/Src/main.su ./Core/Src/stm32g0xx_hal_msp.cyclo ./Core/Src/stm32g0xx_hal_msp.d ./Core/Src/stm32g0xx_hal_msp.o ./Core/Src/stm32g0xx_hal_msp.su ./Core/Src/stm32g0xx_it.cyclo ./Core/Src/stm32g0xx_it.d ./Core/Src/stm32g0xx_it.o ./Core/Src/stm32g0xx_it.su ./Core/Src/syscalls.cyclo ./Core/Src/syscalls.d ./Core/Src/syscalls.o ./Core/Src/syscalls.su ./Core/Src/sysmem.cyclo ./Core/Src/sysmem.d ./Core/Src/sysmem.o ./Core/Src/sysmem.su ./Core/Src/system_stm32g0xx.cyclo ./Core/Src/system_stm32g0xx.d ./Core/Src/system_stm32g0xx.o ./Core/Src/system_stm32g0xx.su
|
|
||||||
|
|
||||||
.PHONY: clean-Core-2f-Src
|
|
||||||
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
../Core/Src/syscalls.c:44:6:initialise_monitor_handles 1
|
|
||||||
../Core/Src/syscalls.c:48:5:_getpid 1
|
|
||||||
../Core/Src/syscalls.c:53:5:_kill 1
|
|
||||||
../Core/Src/syscalls.c:61:6:_exit 1
|
|
||||||
../Core/Src/syscalls.c:67:27:_read 2
|
|
||||||
../Core/Src/syscalls.c:80:27:_write 2
|
|
||||||
../Core/Src/syscalls.c:92:5:_close 1
|
|
||||||
../Core/Src/syscalls.c:99:5:_fstat 1
|
|
||||||
../Core/Src/syscalls.c:106:5:_isatty 1
|
|
||||||
../Core/Src/syscalls.c:112:5:_lseek 1
|
|
||||||
../Core/Src/syscalls.c:120:5:_open 1
|
|
||||||
../Core/Src/syscalls.c:128:5:_wait 1
|
|
||||||
../Core/Src/syscalls.c:135:5:_unlink 1
|
|
||||||
../Core/Src/syscalls.c:142:5:_times 1
|
|
||||||
../Core/Src/syscalls.c:148:5:_stat 1
|
|
||||||
../Core/Src/syscalls.c:155:5:_link 1
|
|
||||||
../Core/Src/syscalls.c:163:5:_fork 1
|
|
||||||
../Core/Src/syscalls.c:169:5:_execve 1
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Core/Src/syscalls.o: ../Core/Src/syscalls.c
|
|
||||||
Binary file not shown.
@ -1,18 +0,0 @@
|
|||||||
../Core/Src/syscalls.c:44:6:initialise_monitor_handles 8 static
|
|
||||||
../Core/Src/syscalls.c:48:5:_getpid 8 static
|
|
||||||
../Core/Src/syscalls.c:53:5:_kill 16 static
|
|
||||||
../Core/Src/syscalls.c:61:6:_exit 16 static
|
|
||||||
../Core/Src/syscalls.c:67:27:_read 32 static
|
|
||||||
../Core/Src/syscalls.c:80:27:_write 32 static
|
|
||||||
../Core/Src/syscalls.c:92:5:_close 16 static
|
|
||||||
../Core/Src/syscalls.c:99:5:_fstat 16 static
|
|
||||||
../Core/Src/syscalls.c:106:5:_isatty 16 static
|
|
||||||
../Core/Src/syscalls.c:112:5:_lseek 24 static
|
|
||||||
../Core/Src/syscalls.c:120:5:_open 20 static
|
|
||||||
../Core/Src/syscalls.c:128:5:_wait 16 static
|
|
||||||
../Core/Src/syscalls.c:135:5:_unlink 16 static
|
|
||||||
../Core/Src/syscalls.c:142:5:_times 16 static
|
|
||||||
../Core/Src/syscalls.c:148:5:_stat 16 static
|
|
||||||
../Core/Src/syscalls.c:155:5:_link 16 static
|
|
||||||
../Core/Src/syscalls.c:163:5:_fork 8 static
|
|
||||||
../Core/Src/syscalls.c:169:5:_execve 24 static
|
|
||||||
@ -1 +0,0 @@
|
|||||||
../Core/Src/sysmem.c:53:7:_sbrk 3
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Core/Src/sysmem.o: ../Core/Src/sysmem.c
|
|
||||||
Binary file not shown.
@ -1 +0,0 @@
|
|||||||
../Core/Src/sysmem.c:53:7:_sbrk 32 static
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
../Core/Src/system_stm32g0xx.c:185:6:SystemInit 1
|
|
||||||
../Core/Src/system_stm32g0xx.c:233:6:SystemCoreClockUpdate 8
|
|
||||||
@ -1,67 +0,0 @@
|
|||||||
Core/Src/system_stm32g0xx.o: ../Core/Src/system_stm32g0xx.c \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,2 +0,0 @@
|
|||||||
../Core/Src/system_stm32g0xx.c:185:6:SystemInit 8 static
|
|
||||||
../Core/Src/system_stm32g0xx.c:233:6:SystemCoreClockUpdate 32 static
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
Core/Startup/startup_stm32g070cbtx.o: \
|
|
||||||
../Core/Startup/startup_stm32g070cbtx.s
|
|
||||||
Binary file not shown.
@ -1,27 +0,0 @@
|
|||||||
################################################################################
|
|
||||||
# Automatically-generated file. Do not edit!
|
|
||||||
# Toolchain: GNU Tools for STM32 (12.3.rel1)
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
# Add inputs and outputs from these tool invocations to the build variables
|
|
||||||
S_SRCS += \
|
|
||||||
../Core/Startup/startup_stm32g070cbtx.s
|
|
||||||
|
|
||||||
S_DEPS += \
|
|
||||||
./Core/Startup/startup_stm32g070cbtx.d
|
|
||||||
|
|
||||||
OBJS += \
|
|
||||||
./Core/Startup/startup_stm32g070cbtx.o
|
|
||||||
|
|
||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
|
||||||
Core/Startup/%.o: ../Core/Startup/%.s Core/Startup/subdir.mk
|
|
||||||
arm-none-eabi-gcc -mcpu=cortex-m0plus -g3 -DDEBUG -c -x assembler-with-cpp -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfloat-abi=soft -mthumb -o "$@" "$<"
|
|
||||||
|
|
||||||
clean: clean-Core-2f-Startup
|
|
||||||
|
|
||||||
clean-Core-2f-Startup:
|
|
||||||
-$(RM) ./Core/Startup/startup_stm32g070cbtx.d ./Core/Startup/startup_stm32g070cbtx.o
|
|
||||||
|
|
||||||
.PHONY: clean-Core-2f-Startup
|
|
||||||
|
|
||||||
@ -1,28 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:143:19:HAL_Init 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:180:19:HAL_DeInit 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:206:13:HAL_MspInit 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:217:13:HAL_MspDeInit 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:240:26:HAL_InitTick 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:308:13:HAL_IncTick 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:319:17:HAL_GetTick 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:328:10:HAL_GetTickPrio 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:337:19:HAL_SetTickFreq 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:368:21:HAL_GetTickFreq 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:384:13:HAL_Delay 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:410:13:HAL_SuspendTick 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:426:13:HAL_ResumeTick 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:436:10:HAL_GetHalVersion 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:445:10:HAL_GetREVID 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:454:10:HAL_GetDEVID 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:463:10:HAL_GetUIDw0 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:472:10:HAL_GetUIDw1 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:481:10:HAL_GetUIDw2 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:509:6:HAL_DBGMCU_EnableDBGStopMode 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:518:6:HAL_DBGMCU_DisableDBGStopMode 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:527:6:HAL_DBGMCU_EnableDBGStandbyMode 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:536:6:HAL_DBGMCU_DisableDBGStandbyMode 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:652:6:HAL_SYSCFG_EnableIOAnalogSwitchBooster 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:661:6:HAL_SYSCFG_DisableIOAnalogSwitchBooster 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:674:6:HAL_SYSCFG_EnableRemap 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:689:6:HAL_SYSCFG_DisableRemap 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:735:6:HAL_SYSCFG_StrobeDBattpinsConfig 1
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,28 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:143:19:HAL_Init 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:180:19:HAL_DeInit 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:206:13:HAL_MspInit 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:217:13:HAL_MspDeInit 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:240:26:HAL_InitTick 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:308:13:HAL_IncTick 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:319:17:HAL_GetTick 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:328:10:HAL_GetTickPrio 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:337:19:HAL_SetTickFreq 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:368:21:HAL_GetTickFreq 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:384:13:HAL_Delay 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:410:13:HAL_SuspendTick 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:426:13:HAL_ResumeTick 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:436:10:HAL_GetHalVersion 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:445:10:HAL_GetREVID 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:454:10:HAL_GetDEVID 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:463:10:HAL_GetUIDw0 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:472:10:HAL_GetUIDw1 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:481:10:HAL_GetUIDw2 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:509:6:HAL_DBGMCU_EnableDBGStopMode 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:518:6:HAL_DBGMCU_DisableDBGStopMode 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:527:6:HAL_DBGMCU_EnableDBGStandbyMode 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:536:6:HAL_DBGMCU_DisableDBGStandbyMode 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:652:6:HAL_SYSCFG_EnableIOAnalogSwitchBooster 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:661:6:HAL_SYSCFG_DisableIOAnalogSwitchBooster 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:674:6:HAL_SYSCFG_EnableRemap 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:689:6:HAL_SYSCFG_DisableRemap 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.c:735:6:HAL_SYSCFG_StrobeDBattpinsConfig 16 static
|
|
||||||
@ -1,26 +0,0 @@
|
|||||||
../Drivers/CMSIS/Include/core_cm0plus.h:741:22:__NVIC_EnableIRQ 2
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:779:22:__NVIC_DisableIRQ 2
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:798:26:__NVIC_GetPendingIRQ 2
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:817:22:__NVIC_SetPendingIRQ 2
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:832:22:__NVIC_ClearPendingIRQ 2
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:850:22:__NVIC_SetPriority 2
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:874:26:__NVIC_GetPriority 2
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:985:34:__NVIC_SystemReset 1
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:1056:26:SysTick_Config 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:131:6:HAL_NVIC_SetPriority 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:148:6:HAL_NVIC_EnableIRQ 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:164:6:HAL_NVIC_DisableIRQ 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:177:6:HAL_NVIC_SystemReset 0
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:190:10:HAL_SYSTICK_Config 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:221:10:HAL_NVIC_GetPriority 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:234:6:HAL_NVIC_SetPendingIRQ 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:252:10:HAL_NVIC_GetPendingIRQ 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:268:6:HAL_NVIC_ClearPendingIRQ 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:285:6:HAL_SYSTICK_CLKSourceConfig 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:303:6:HAL_SYSTICK_IRQHandler 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:312:13:HAL_SYSTICK_Callback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:331:6:HAL_MPU_Enable 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:346:6:HAL_MPU_Disable 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:359:6:HAL_MPU_EnableRegion 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:375:6:HAL_MPU_DisableRegion 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:393:6:HAL_MPU_ConfigRegion 1
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,26 +0,0 @@
|
|||||||
../Drivers/CMSIS/Include/core_cm0plus.h:741:22:__NVIC_EnableIRQ 16 static,ignoring_inline_asm
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:779:22:__NVIC_DisableIRQ 16 static,ignoring_inline_asm
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:798:26:__NVIC_GetPendingIRQ 16 static
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:817:22:__NVIC_SetPendingIRQ 16 static
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:832:22:__NVIC_ClearPendingIRQ 16 static
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:850:22:__NVIC_SetPriority 24 static
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:874:26:__NVIC_GetPriority 16 static
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:985:34:__NVIC_SystemReset 8 static,ignoring_inline_asm
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:1056:26:SysTick_Config 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:131:6:HAL_NVIC_SetPriority 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:148:6:HAL_NVIC_EnableIRQ 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:164:6:HAL_NVIC_DisableIRQ 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:177:6:HAL_NVIC_SystemReset 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:190:10:HAL_SYSTICK_Config 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:221:10:HAL_NVIC_GetPriority 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:234:6:HAL_NVIC_SetPendingIRQ 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:252:10:HAL_NVIC_GetPendingIRQ 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:268:6:HAL_NVIC_ClearPendingIRQ 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:285:6:HAL_SYSTICK_CLKSourceConfig 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:303:6:HAL_SYSTICK_IRQHandler 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:312:13:HAL_SYSTICK_Callback 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:331:6:HAL_MPU_Enable 16 static,ignoring_inline_asm
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:346:6:HAL_MPU_Disable 8 static,ignoring_inline_asm
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:359:6:HAL_MPU_EnableRegion 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:375:6:HAL_MPU_DisableRegion 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.c:393:6:HAL_MPU_ConfigRegion 16 static
|
|
||||||
@ -1,15 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:152:19:HAL_DMA_Init 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:259:19:HAL_DMA_DeInit 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:382:19:HAL_DMA_Start 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:433:19:HAL_DMA_Start_IT 6
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:507:19:HAL_DMA_Abort 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:572:19:HAL_DMA_Abort_IT 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:637:19:HAL_DMA_PollForTransfer 13
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:797:6:HAL_DMA_IRQHandler 12
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:903:19:HAL_DMA_RegisterCallback 9
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:954:19:HAL_DMA_UnRegisterCallback 8
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:1032:22:HAL_DMA_GetState 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:1044:10:HAL_DMA_GetError 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:1071:13:DMA_SetConfig 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:1118:13:DMA_CalcDMAMUXChannelBaseAndMask 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:1164:13:DMA_CalcDMAMUXRequestGenBaseAndMask 1
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,15 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:152:19:HAL_DMA_Init 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:259:19:HAL_DMA_DeInit 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:382:19:HAL_DMA_Start 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:433:19:HAL_DMA_Start_IT 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:507:19:HAL_DMA_Abort 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:572:19:HAL_DMA_Abort_IT 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:637:19:HAL_DMA_PollForTransfer 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:797:6:HAL_DMA_IRQHandler 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:903:19:HAL_DMA_RegisterCallback 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:954:19:HAL_DMA_UnRegisterCallback 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:1032:22:HAL_DMA_GetState 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:1044:10:HAL_DMA_GetError 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:1071:13:DMA_SetConfig 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:1118:13:DMA_CalcDMAMUXChannelBaseAndMask 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.c:1164:13:DMA_CalcDMAMUXRequestGenBaseAndMask 24 static
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.c:95:19:HAL_DMAEx_ConfigMuxSync 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.c:144:19:HAL_DMAEx_ConfigMuxRequestGenerator 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.c:203:19:HAL_DMAEx_EnableMuxRequestGenerator 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.c:231:19:HAL_DMAEx_DisableMuxRequestGenerator 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.c:259:6:HAL_DMAEx_MUX_IRQHandler 6
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,5 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.c:95:19:HAL_DMAEx_ConfigMuxSync 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.c:144:19:HAL_DMAEx_ConfigMuxRequestGenerator 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.c:203:19:HAL_DMAEx_EnableMuxRequestGenerator 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.c:231:19:HAL_DMAEx_DisableMuxRequestGenerator 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.c:259:6:HAL_DMAEx_MUX_IRQHandler 16 static
|
|
||||||
@ -1,9 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:143:19:HAL_EXTI_SetConfigLine 9
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:265:19:HAL_EXTI_GetConfigLine 9
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:359:19:HAL_EXTI_ClearConfigLine 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:425:19:HAL_EXTI_RegisterCallback 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:460:19:HAL_EXTI_GetHandle 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:501:6:HAL_EXTI_IRQHandler 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:555:10:HAL_EXTI_GetPending 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:599:6:HAL_EXTI_ClearPending 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:635:6:HAL_EXTI_GenerateSWI 1
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,9 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:143:19:HAL_EXTI_SetConfigLine 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:265:19:HAL_EXTI_GetConfigLine 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:359:19:HAL_EXTI_ClearConfigLine 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:425:19:HAL_EXTI_RegisterCallback 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:460:19:HAL_EXTI_GetHandle 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:501:6:HAL_EXTI_IRQHandler 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:555:10:HAL_EXTI_GetPending 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:599:6:HAL_EXTI_ClearPending 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.c:635:6:HAL_EXTI_GenerateSWI 32 static
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:164:19:HAL_FLASH_Program 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:226:19:HAL_FLASH_Program_IT 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:282:6:HAL_FLASH_IRQHandler 8
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:382:13:HAL_FLASH_EndOfOperationCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:400:13:HAL_FLASH_OperationErrorCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:433:19:HAL_FLASH_Unlock 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:457:19:HAL_FLASH_Lock 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:480:19:HAL_FLASH_OB_Unlock 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:504:19:HAL_FLASH_OB_Lock 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:527:19:HAL_FLASH_OB_Launch 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:572:10:HAL_FLASH_GetError 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:596:19:FLASH_WaitForLastOperation 8
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:656:13:FLASH_Program_DoubleWord 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:678:24:FLASH_Program_Fast 3
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,14 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:164:19:HAL_FLASH_Program 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:226:19:HAL_FLASH_Program_IT 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:282:6:HAL_FLASH_IRQHandler 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:382:13:HAL_FLASH_EndOfOperationCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:400:13:HAL_FLASH_OperationErrorCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:433:19:HAL_FLASH_Unlock 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:457:19:HAL_FLASH_Lock 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:480:19:HAL_FLASH_OB_Unlock 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:504:19:HAL_FLASH_OB_Lock 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:527:19:HAL_FLASH_OB_Launch 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:572:10:HAL_FLASH_GetError 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:596:19:FLASH_WaitForLastOperation 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:656:13:FLASH_Program_DoubleWord 32 static,ignoring_inline_asm
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.c:678:24:FLASH_Program_Fast 40 static,ignoring_inline_asm
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:154:19:HAL_FLASHEx_Erase 6
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:226:19:HAL_FLASHEx_Erase_IT 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:297:19:HAL_FLASHEx_OBProgram 7
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:421:6:HAL_FLASHEx_OBGetConfig 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:488:10:HAL_FLASHEx_FlashEmptyCheck 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:502:6:HAL_FLASHEx_ForceFlashEmpty 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:568:13:FLASH_MassErase 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:588:6:FLASH_PageErase 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:622:6:FLASH_FlushCaches 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:658:13:FLASH_OB_WRPConfig 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:701:13:FLASH_OB_GetWRP 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:764:13:FLASH_OB_OptrConfig 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:787:17:FLASH_OB_GetRDP 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:823:17:FLASH_OB_GetUser 1
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,14 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:154:19:HAL_FLASHEx_Erase 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:226:19:HAL_FLASHEx_Erase_IT 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:297:19:HAL_FLASHEx_OBProgram 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:421:6:HAL_FLASHEx_OBGetConfig 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:488:10:HAL_FLASHEx_FlashEmptyCheck 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:502:6:HAL_FLASHEx_ForceFlashEmpty 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:568:13:FLASH_MassErase 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:588:6:FLASH_PageErase 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:622:6:FLASH_FlushCaches 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:658:13:FLASH_OB_WRPConfig 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:701:13:FLASH_OB_GetWRP 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:764:13:FLASH_OB_OptrConfig 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:787:17:FLASH_OB_GetRDP 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.c:823:17:FLASH_OB_GetUser 16 static
|
|
||||||
@ -1,9 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:162:6:HAL_GPIO_Init 16
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:289:6:HAL_GPIO_DeInit 8
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:370:15:HAL_GPIO_ReadPin 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:404:6:HAL_GPIO_WritePin 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:427:6:HAL_GPIO_TogglePin 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:452:19:HAL_GPIO_LockPin 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:487:6:HAL_GPIO_EXTI_IRQHandler 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:508:13:HAL_GPIO_EXTI_Rising_Callback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:523:13:HAL_GPIO_EXTI_Falling_Callback 1
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,9 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:162:6:HAL_GPIO_Init 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:289:6:HAL_GPIO_DeInit 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:370:15:HAL_GPIO_ReadPin 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:404:6:HAL_GPIO_WritePin 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:427:6:HAL_GPIO_TogglePin 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:452:19:HAL_GPIO_LockPin 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:487:6:HAL_GPIO_EXTI_IRQHandler 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:508:13:HAL_GPIO_EXTI_Rising_Callback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.c:523:13:HAL_GPIO_EXTI_Falling_Callback 16 static
|
|
||||||
@ -1,81 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:535:19:HAL_I2C_Init 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:650:19:HAL_I2C_DeInit 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:696:13:HAL_I2C_MspInit 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:712:13:HAL_I2C_MspDeInit 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1119:19:HAL_I2C_Master_Transmit 13
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1260:19:HAL_I2C_Master_Receive 12
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1378:19:HAL_I2C_Slave_Transmit 17
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1553:19:HAL_I2C_Slave_Receive 12
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1683:19:HAL_I2C_Master_Transmit_IT 6
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1773:19:HAL_I2C_Master_Receive_IT 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1842:19:HAL_I2C_Slave_Transmit_IT 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1906:19:HAL_I2C_Slave_Receive_IT 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1958:19:HAL_I2C_Master_Transmit_DMA 9
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2121:19:HAL_I2C_Master_Receive_DMA 8
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2266:19:HAL_I2C_Slave_Transmit_DMA 9
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2402:19:HAL_I2C_Slave_Receive_DMA 7
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2511:19:HAL_I2C_Mem_Write 15
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2648:19:HAL_I2C_Mem_Read 15
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2785:19:HAL_I2C_Mem_Write_IT 7
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2873:19:HAL_I2C_Mem_Read_IT 7
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2960:19:HAL_I2C_Mem_Write_DMA 10
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3106:19:HAL_I2C_Mem_Read_DMA 10
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3251:19:HAL_I2C_IsDeviceReady 14
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3377:19:HAL_I2C_Master_Seq_Transmit_IT 14
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3491:19:HAL_I2C_Master_Seq_Transmit_DMA 19
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3688:19:HAL_I2C_Master_Seq_Receive_IT 9
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3775:19:HAL_I2C_Master_Seq_Receive_DMA 12
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3941:19:HAL_I2C_Slave_Seq_Transmit_IT 11
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4041:19:HAL_I2C_Slave_Seq_Transmit_DMA 17
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4225:19:HAL_I2C_Slave_Seq_Receive_IT 11
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4325:19:HAL_I2C_Slave_Seq_Receive_DMA 17
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4505:19:HAL_I2C_EnableListen_IT 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4529:19:HAL_I2C_DisableListen_IT 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4562:19:HAL_I2C_Master_Abort_IT 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4624:6:HAL_I2C_EV_IRQHandler 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4643:6:HAL_I2C_ER_IRQHandler 8
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4695:13:HAL_I2C_MasterTxCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4711:13:HAL_I2C_MasterRxCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4726:13:HAL_I2C_SlaveTxCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4742:13:HAL_I2C_SlaveRxCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4760:13:HAL_I2C_AddrCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4778:13:HAL_I2C_ListenCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4794:13:HAL_I2C_MemTxCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4810:13:HAL_I2C_MemRxCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4826:13:HAL_I2C_ErrorCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4842:13:HAL_I2C_AbortCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4877:22:HAL_I2C_GetState 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4889:21:HAL_I2C_GetMode 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4900:10:HAL_I2C_GetError 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4925:26:I2C_Master_ISR_IT 24
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5076:26:I2C_Mem_ISR_IT 20
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5219:26:I2C_Slave_ISR_IT 25
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5359:26:I2C_Master_ISR_DMA 18
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5499:26:I2C_Mem_ISR_DMA 18
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5647:26:I2C_Slave_ISR_DMA 27
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5791:26:I2C_RequestMemoryWrite 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5846:26:I2C_RequestMemoryRead 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5895:13:I2C_ITAddrCplt 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5990:13:I2C_ITMasterSeqCplt 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6043:13:I2C_ITSlaveSeqCplt 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6117:13:I2C_ITMasterCplt 12
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6260:13:I2C_ITSlaveCplt 26
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6476:13:I2C_ITListenCplt 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6527:13:I2C_ITError 19
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6658:13:I2C_TreatErrorCallback 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6696:13:I2C_Flush_TXDR 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6717:13:I2C_DMAMasterTransmitCplt 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6768:13:I2C_DMASlaveTransmitCplt 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6797:13:I2C_DMAMasterReceiveCplt 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6848:13:I2C_DMASlaveReceiveCplt 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6877:13:I2C_DMAError 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6896:13:I2C_DMAAbort 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6926:26:I2C_WaitOnFlagUntilTimeout 7
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6966:26:I2C_WaitOnTXISFlagUntilTimeout 7
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7007:26:I2C_WaitOnSTOPFlagUntilTimeout 6
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7045:26:I2C_WaitOnRXNEFlagUntilTimeout 13
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7122:26:I2C_IsErrorOccurred 17
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7263:13:I2C_TransferConfig 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7290:13:I2C_Enable_IRQ 15
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7381:13:I2C_Disable_IRQ 9
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7444:13:I2C_ConvertOtherXferOptions 3
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,81 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:535:19:HAL_I2C_Init 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:650:19:HAL_I2C_DeInit 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:696:13:HAL_I2C_MspInit 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:712:13:HAL_I2C_MspDeInit 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1119:19:HAL_I2C_Master_Transmit 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1260:19:HAL_I2C_Master_Receive 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1378:19:HAL_I2C_Slave_Transmit 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1553:19:HAL_I2C_Slave_Receive 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1683:19:HAL_I2C_Master_Transmit_IT 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1773:19:HAL_I2C_Master_Receive_IT 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1842:19:HAL_I2C_Slave_Transmit_IT 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1906:19:HAL_I2C_Slave_Receive_IT 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:1958:19:HAL_I2C_Master_Transmit_DMA 56 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2121:19:HAL_I2C_Master_Receive_DMA 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2266:19:HAL_I2C_Slave_Transmit_DMA 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2402:19:HAL_I2C_Slave_Receive_DMA 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2511:19:HAL_I2C_Mem_Write 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2648:19:HAL_I2C_Mem_Read 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2785:19:HAL_I2C_Mem_Write_IT 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2873:19:HAL_I2C_Mem_Read_IT 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:2960:19:HAL_I2C_Mem_Write_DMA 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3106:19:HAL_I2C_Mem_Read_DMA 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3251:19:HAL_I2C_IsDeviceReady 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3377:19:HAL_I2C_Master_Seq_Transmit_IT 56 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3491:19:HAL_I2C_Master_Seq_Transmit_DMA 56 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3688:19:HAL_I2C_Master_Seq_Receive_IT 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3775:19:HAL_I2C_Master_Seq_Receive_DMA 56 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:3941:19:HAL_I2C_Slave_Seq_Transmit_IT 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4041:19:HAL_I2C_Slave_Seq_Transmit_DMA 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4225:19:HAL_I2C_Slave_Seq_Receive_IT 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4325:19:HAL_I2C_Slave_Seq_Receive_DMA 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4505:19:HAL_I2C_EnableListen_IT 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4529:19:HAL_I2C_DisableListen_IT 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4562:19:HAL_I2C_Master_Abort_IT 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4624:6:HAL_I2C_EV_IRQHandler 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4643:6:HAL_I2C_ER_IRQHandler 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4695:13:HAL_I2C_MasterTxCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4711:13:HAL_I2C_MasterRxCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4726:13:HAL_I2C_SlaveTxCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4742:13:HAL_I2C_SlaveRxCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4760:13:HAL_I2C_AddrCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4778:13:HAL_I2C_ListenCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4794:13:HAL_I2C_MemTxCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4810:13:HAL_I2C_MemRxCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4826:13:HAL_I2C_ErrorCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4842:13:HAL_I2C_AbortCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4877:22:HAL_I2C_GetState 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4889:21:HAL_I2C_GetMode 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4900:10:HAL_I2C_GetError 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:4925:26:I2C_Master_ISR_IT 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5076:26:I2C_Mem_ISR_IT 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5219:26:I2C_Slave_ISR_IT 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5359:26:I2C_Master_ISR_DMA 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5499:26:I2C_Mem_ISR_DMA 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5647:26:I2C_Slave_ISR_DMA 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5791:26:I2C_RequestMemoryWrite 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5846:26:I2C_RequestMemoryRead 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5895:13:I2C_ITAddrCplt 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:5990:13:I2C_ITMasterSeqCplt 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6043:13:I2C_ITSlaveSeqCplt 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6117:13:I2C_ITMasterCplt 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6260:13:I2C_ITSlaveCplt 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6476:13:I2C_ITListenCplt 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6527:13:I2C_ITError 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6658:13:I2C_TreatErrorCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6696:13:I2C_Flush_TXDR 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6717:13:I2C_DMAMasterTransmitCplt 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6768:13:I2C_DMASlaveTransmitCplt 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6797:13:I2C_DMAMasterReceiveCplt 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6848:13:I2C_DMASlaveReceiveCplt 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6877:13:I2C_DMAError 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6896:13:I2C_DMAAbort 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6926:26:I2C_WaitOnFlagUntilTimeout 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:6966:26:I2C_WaitOnTXISFlagUntilTimeout 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7007:26:I2C_WaitOnSTOPFlagUntilTimeout 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7045:26:I2C_WaitOnRXNEFlagUntilTimeout 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7122:26:I2C_IsErrorOccurred 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7263:13:I2C_TransferConfig 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7290:13:I2C_Enable_IRQ 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7381:13:I2C_Disable_IRQ 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c.c:7444:13:I2C_ConvertOtherXferOptions 16 static
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c:96:19:HAL_I2CEx_ConfigAnalogFilter 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c:140:19:HAL_I2CEx_ConfigDigitalFilter 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c:208:19:HAL_I2CEx_EnableWakeUp 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c:247:19:HAL_I2CEx_DisableWakeUp 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c:312:6:HAL_I2CEx_EnableFastModePlus 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c:339:6:HAL_I2CEx_DisableFastModePlus 1
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,6 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c:96:19:HAL_I2CEx_ConfigAnalogFilter 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c:140:19:HAL_I2CEx_ConfigDigitalFilter 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c:208:19:HAL_I2CEx_EnableWakeUp 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c:247:19:HAL_I2CEx_DisableWakeUp 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c:312:6:HAL_I2CEx_EnableFastModePlus 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_i2c_ex.c:339:6:HAL_I2CEx_DisableFastModePlus 24 static
|
|
||||||
@ -1,12 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:73:6:HAL_PWR_DeInit 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:228:6:HAL_PWR_EnableBkUpAccess 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:238:6:HAL_PWR_DisableBkUpAccess 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:262:6:HAL_PWR_EnableWakeUpPin 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:284:6:HAL_PWR_DisableWakeUpPin 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:318:6:HAL_PWR_EnterSLEEPMode 6
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:398:6:HAL_PWR_EnterSTOPMode 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:453:6:HAL_PWR_EnterSTANDBYMode 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:480:6:HAL_PWR_EnableSleepOnExit 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:494:6:HAL_PWR_DisableSleepOnExit 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:508:6:HAL_PWR_EnableSEVOnPend 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:521:6:HAL_PWR_DisableSEVOnPend 1
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,12 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:73:6:HAL_PWR_DeInit 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:228:6:HAL_PWR_EnableBkUpAccess 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:238:6:HAL_PWR_DisableBkUpAccess 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:262:6:HAL_PWR_EnableWakeUpPin 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:284:6:HAL_PWR_DisableWakeUpPin 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:318:6:HAL_PWR_EnterSLEEPMode 16 static,ignoring_inline_asm
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:398:6:HAL_PWR_EnterSTOPMode 16 static,ignoring_inline_asm
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:453:6:HAL_PWR_EnterSTANDBYMode 8 static,ignoring_inline_asm
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:480:6:HAL_PWR_EnableSleepOnExit 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:494:6:HAL_PWR_DisableSleepOnExit 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:508:6:HAL_PWR_EnableSEVOnPend 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.c:521:6:HAL_PWR_DisableSEVOnPend 8 static
|
|
||||||
@ -1,16 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:131:6:HAL_PWREx_EnableBatteryCharging 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:146:6:HAL_PWREx_DisableBatteryCharging 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:381:6:HAL_PWREx_EnableInternalWakeUpLine 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:390:6:HAL_PWREx_DisableInternalWakeUpLine 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:414:19:HAL_PWREx_EnableGPIOPullUp 7
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:476:19:HAL_PWREx_DisableGPIOPullUp 7
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:538:19:HAL_PWREx_EnableGPIOPullDown 7
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:600:19:HAL_PWREx_DisableGPIOPullDown 7
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:653:6:HAL_PWREx_EnablePullUpPullDownConfig 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:664:6:HAL_PWREx_DisablePullUpPullDownConfig 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:704:6:HAL_PWREx_EnableFlashPowerDown 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:722:6:HAL_PWREx_DisableFlashPowerDown 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:736:10:HAL_PWREx_GetVoltageRange 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:762:19:HAL_PWREx_ControlVoltageScaling 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:803:6:HAL_PWREx_EnableLowPowerRunMode 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:818:19:HAL_PWREx_DisableLowPowerRunMode 3
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,16 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:131:6:HAL_PWREx_EnableBatteryCharging 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:146:6:HAL_PWREx_DisableBatteryCharging 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:381:6:HAL_PWREx_EnableInternalWakeUpLine 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:390:6:HAL_PWREx_DisableInternalWakeUpLine 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:414:19:HAL_PWREx_EnableGPIOPullUp 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:476:19:HAL_PWREx_DisableGPIOPullUp 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:538:19:HAL_PWREx_EnableGPIOPullDown 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:600:19:HAL_PWREx_DisableGPIOPullDown 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:653:6:HAL_PWREx_EnablePullUpPullDownConfig 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:664:6:HAL_PWREx_DisablePullUpPullDownConfig 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:704:6:HAL_PWREx_EnableFlashPowerDown 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:722:6:HAL_PWREx_DisableFlashPowerDown 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:736:10:HAL_PWREx_GetVoltageRange 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:762:19:HAL_PWREx_ControlVoltageScaling 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:803:6:HAL_PWREx_EnableLowPowerRunMode 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.c:818:19:HAL_PWREx_DisableLowPowerRunMode 16 static
|
|
||||||
@ -1,17 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:1793:26:LL_RCC_GetAPB1Prescaler 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:217:19:HAL_RCC_DeInit 8
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:309:19:HAL_RCC_OscConfig 69
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:805:19:HAL_RCC_ClockConfig 23
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1040:6:HAL_RCC_MCOConfig 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1128:10:HAL_RCC_GetSysClockFreq 7
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1196:10:HAL_RCC_GetHCLKFreq 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1207:10:HAL_RCC_GetPCLK1Freq 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1220:6:HAL_RCC_GetOscConfig 8
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1323:6:HAL_RCC_GetClockConfig 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1356:6:HAL_RCC_EnableCSS 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1372:6:HAL_RCC_EnableLSECSS 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1383:6:HAL_RCC_DisableLSECSS 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1393:6:HAL_RCC_NMI_IRQHandler 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1419:13:HAL_RCC_CSSCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1430:13:HAL_RCC_LSECSSCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1443:10:HAL_RCC_GetResetSource 1
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,17 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:1793:26:LL_RCC_GetAPB1Prescaler 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:217:19:HAL_RCC_DeInit 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:309:19:HAL_RCC_OscConfig 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:805:19:HAL_RCC_ClockConfig 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1040:6:HAL_RCC_MCOConfig 56 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1128:10:HAL_RCC_GetSysClockFreq 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1196:10:HAL_RCC_GetHCLKFreq 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1207:10:HAL_RCC_GetPCLK1Freq 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1220:6:HAL_RCC_GetOscConfig 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1323:6:HAL_RCC_GetClockConfig 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1356:6:HAL_RCC_EnableCSS 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1372:6:HAL_RCC_EnableLSECSS 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1383:6:HAL_RCC_DisableLSECSS 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1393:6:HAL_RCC_NMI_IRQHandler 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1419:13:HAL_RCC_CSSCallback 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1430:13:HAL_RCC_LSECSSCallback 8 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.c:1443:10:HAL_RCC_GetResetSource 16 static
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.c:112:19:HAL_RCCEx_PeriphCLKConfig 20
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.c:469:6:HAL_RCCEx_GetPeriphCLKConfig 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.c:610:10:HAL_RCCEx_GetPeriphCLKFreq 44
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.c:1216:6:HAL_RCCEx_EnableLSCO 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.c:1263:6:HAL_RCCEx_DisableLSCO 5
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,5 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.c:112:19:HAL_RCCEx_PeriphCLKConfig 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.c:469:6:HAL_RCCEx_GetPeriphCLKConfig 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.c:610:10:HAL_RCCEx_GetPeriphCLKFreq 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.c:1216:6:HAL_RCCEx_EnableLSCO 56 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.c:1263:6:HAL_RCCEx_DisableLSCO 16 static
|
|
||||||
@ -1,56 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:314:19:HAL_SPI_Init 8
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:489:19:HAL_SPI_DeInit 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:533:13:HAL_SPI_MspInit 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:549:13:HAL_SPI_MspDeInit 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:821:19:HAL_SPI_Transmit 25
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:991:19:HAL_SPI_Receive 23
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:1236:19:HAL_SPI_TransmitReceive 38
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:1548:19:HAL_SPI_Transmit_IT 8
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:1634:19:HAL_SPI_Receive_IT 10
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:1743:19:HAL_SPI_TransmitReceive_IT 14
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:1853:19:HAL_SPI_Transmit_DMA 11
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:1977:19:HAL_SPI_Receive_DMA 13
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2121:19:HAL_SPI_TransmitReceive_DMA 19
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2311:19:HAL_SPI_Abort 18
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2471:19:HAL_SPI_Abort_IT 19
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2632:19:HAL_SPI_DMAPause 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2652:19:HAL_SPI_DMAResume 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2672:19:HAL_SPI_DMAStop 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2712:6:HAL_SPI_IRQHandler 21
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2819:13:HAL_SPI_TxCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2835:13:HAL_SPI_RxCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2851:13:HAL_SPI_TxRxCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2867:13:HAL_SPI_TxHalfCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2883:13:HAL_SPI_RxHalfCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2899:13:HAL_SPI_TxRxHalfCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2915:13:HAL_SPI_ErrorCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2933:13:HAL_SPI_AbortCpltCallback 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2968:22:HAL_SPI_GetState 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2980:10:HAL_SPI_GetError 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3005:13:SPI_DMATransmitCplt 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3062:13:SPI_DMAReceiveCplt 6
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3179:13:SPI_DMATransmitReceiveCplt 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3279:13:SPI_DMAHalfTransmitCplt 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3297:13:SPI_DMAHalfReceiveCplt 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3315:13:SPI_DMAHalfTransmitReceiveCplt 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3333:13:SPI_DMAError 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3356:13:SPI_DMAAbortOnError 1
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3378:13:SPI_DMATxAbortCallback 6
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3444:13:SPI_DMARxAbortCallback 6
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3509:13:SPI_2linesRxISR_8BIT 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3594:13:SPI_2linesTxISR_8BIT 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3641:13:SPI_2linesRxISR_16BIT 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3697:13:SPI_2linesTxISR_16BIT 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3762:13:SPI_RxISR_8BIT 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3818:13:SPI_RxISR_16BIT 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3851:13:SPI_TxISR_8BIT 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3876:13:SPI_TxISR_16BIT 2
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3906:26:SPI_WaitFlagStateUntilTimeout 10
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3975:26:SPI_WaitFifoStateUntilTimeout 12
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4055:26:SPI_EndRxTransaction 9
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4091:26:SPI_EndRxTxTransaction 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4123:13:SPI_CloseRxTx_ISR 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4200:13:SPI_CloseRx_ISR 3
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4257:13:SPI_CloseTx_ISR 4
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4306:13:SPI_AbortRx_ISR 5
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4350:13:SPI_AbortTx_ISR 10
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1,56 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:314:19:HAL_SPI_Init 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:489:19:HAL_SPI_DeInit 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:533:13:HAL_SPI_MspInit 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:549:13:HAL_SPI_MspDeInit 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:821:19:HAL_SPI_Transmit 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:991:19:HAL_SPI_Receive 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:1236:19:HAL_SPI_TransmitReceive 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:1548:19:HAL_SPI_Transmit_IT 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:1634:19:HAL_SPI_Receive_IT 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:1743:19:HAL_SPI_TransmitReceive_IT 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:1853:19:HAL_SPI_Transmit_DMA 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:1977:19:HAL_SPI_Receive_DMA 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2121:19:HAL_SPI_TransmitReceive_DMA 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2311:19:HAL_SPI_Abort 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2471:19:HAL_SPI_Abort_IT 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2632:19:HAL_SPI_DMAPause 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2652:19:HAL_SPI_DMAResume 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2672:19:HAL_SPI_DMAStop 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2712:6:HAL_SPI_IRQHandler 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2819:13:HAL_SPI_TxCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2835:13:HAL_SPI_RxCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2851:13:HAL_SPI_TxRxCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2867:13:HAL_SPI_TxHalfCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2883:13:HAL_SPI_RxHalfCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2899:13:HAL_SPI_TxRxHalfCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2915:13:HAL_SPI_ErrorCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2933:13:HAL_SPI_AbortCpltCallback 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2968:22:HAL_SPI_GetState 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:2980:10:HAL_SPI_GetError 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3005:13:SPI_DMATransmitCplt 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3062:13:SPI_DMAReceiveCplt 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3179:13:SPI_DMATransmitReceiveCplt 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3279:13:SPI_DMAHalfTransmitCplt 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3297:13:SPI_DMAHalfReceiveCplt 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3315:13:SPI_DMAHalfTransmitReceiveCplt 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3333:13:SPI_DMAError 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3356:13:SPI_DMAAbortOnError 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3378:13:SPI_DMATxAbortCallback 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3444:13:SPI_DMARxAbortCallback 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3509:13:SPI_2linesRxISR_8BIT 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3594:13:SPI_2linesTxISR_8BIT 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3641:13:SPI_2linesRxISR_16BIT 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3697:13:SPI_2linesTxISR_16BIT 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3762:13:SPI_RxISR_8BIT 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3818:13:SPI_RxISR_16BIT 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3851:13:SPI_TxISR_8BIT 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3876:13:SPI_TxISR_16BIT 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3906:26:SPI_WaitFlagStateUntilTimeout 40 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:3975:26:SPI_WaitFifoStateUntilTimeout 48 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4055:26:SPI_EndRxTransaction 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4091:26:SPI_EndRxTxTransaction 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4123:13:SPI_CloseRxTx_ISR 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4200:13:SPI_CloseRx_ISR 16 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4257:13:SPI_CloseTx_ISR 24 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4306:13:SPI_AbortRx_ISR 32 static
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi.c:4350:13:SPI_AbortTx_ISR 32 static
|
|
||||||
@ -1 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi_ex.c:79:19:HAL_SPIEx_FlushRxFifo 3
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi_ex.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi_ex.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Binary file not shown.
@ -1 +0,0 @@
|
|||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_spi_ex.c:79:19:HAL_SPIEx_FlushRxFifo 24 static
|
|
||||||
@ -1,68 +0,0 @@
|
|||||||
Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o: \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.c \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h \
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h \
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h \
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h \
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h \
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h \
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal.h:
|
|
||||||
../Core/Inc/stm32g0xx_hal_conf.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_def.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g0xx.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/stm32g070xx.h:
|
|
||||||
../Drivers/CMSIS/Include/core_cm0plus.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_version.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_compiler.h:
|
|
||||||
../Drivers/CMSIS/Include/cmsis_gcc.h:
|
|
||||||
../Drivers/CMSIS/Include/mpu_armv7.h:
|
|
||||||
../Drivers/CMSIS/Device/ST/STM32G0xx/Include/system_stm32g0xx.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_rcc.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_rcc_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_gpio_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dma.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_dmamux.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_dma_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_cortex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_exti.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_flash_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_i2c_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_pwr_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_spi_ex.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart.h:
|
|
||||||
../Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_hal_uart_ex.h:
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user