/
Sangak
/
inav
Обзор
Документация
Войти
/
Sangak
/
inav
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/drivers/system.h
53 строки
1 KB
Pawel Spychalski (DzikuVx)
Remove unused USE_UNDERCLOCK define and related code
18 мар 2024, 11:49
18 мар 2024, 11:49
4dcf6ed
Код
Авторство
О чём код?
/* * This file is part of Cleanflight. * * Cleanflight is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Cleanflight is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Cleanflight. If not, see <http://www.gnu.org/licenses/>. */ #pragma once #include <stdint.h> #include <stdbool.h> void systemInit(void); typedef enum { FAILURE_DEVELOPER = 0, FAILURE_MISSING_ACC, FAILURE_ACC_INIT, FAILURE_ACC_INCOMPATIBLE, FAILURE_INVALID_EEPROM_CONTENTS, FAILURE_FLASH_WRITE_FAILED, FAILURE_GYRO_INIT_FAILED, FAILURE_FLASH_READ_FAILED, } failureMode_e; // failure void failureMode(failureMode_e mode); // bootloader/IAP void systemReset(void); void systemResetRequest(uint32_t requestId); void systemResetToBootloader(void); uint32_t systemBootloaderAddress(void); bool isMPUSoftReset(void); void cycleCounterInit(void); void checkForBootLoaderRequest(void); void initialiseMemorySections(void); void enableGPIOPowerUsageAndNoiseReductions(void); extern uint32_t hse_value; extern uint32_t cachedRccCsrValue;