2018-01-05 02:19:51 -04:00
|
|
|
/*
|
|
|
|
* This file 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.
|
|
|
|
*
|
|
|
|
* This file 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
2019-10-20 10:31:12 -03:00
|
|
|
*
|
2018-01-05 02:19:51 -04:00
|
|
|
* Code by Andrew Tridgell and Siddharth Bharat Purohit
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include "AP_HAL_ChibiOS_Namespace.h"
|
2018-08-07 03:39:42 -03:00
|
|
|
#include "AP_HAL_ChibiOS.h"
|
2018-12-08 22:34:39 -04:00
|
|
|
#include <ch.h>
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2021-01-16 01:01:04 -04:00
|
|
|
class ExpandingString;
|
|
|
|
|
|
|
|
#ifndef HAL_ENABLE_SAVE_PERSISTENT_PARAMS
|
|
|
|
// on F7 and H7 we will try to save key persistent parameters at the
|
|
|
|
// end of the bootloader sector. This enables temperature calibration
|
|
|
|
// data to be saved persistently in the factory
|
2021-01-26 18:34:47 -04:00
|
|
|
#define HAL_ENABLE_SAVE_PERSISTENT_PARAMS !defined(HAL_BOOTLOADER_BUILD) && !defined(HAL_BUILD_AP_PERIPH) && (defined(STM32F7) || defined(STM32H7))
|
2021-01-16 01:01:04 -04:00
|
|
|
#endif
|
|
|
|
|
2018-01-13 00:02:05 -04:00
|
|
|
class ChibiOS::Util : public AP_HAL::Util {
|
2018-01-05 02:19:51 -04:00
|
|
|
public:
|
2018-01-28 14:31:21 -04:00
|
|
|
static Util *from(AP_HAL::Util *util) {
|
|
|
|
return static_cast<Util*>(util);
|
|
|
|
}
|
|
|
|
|
2018-07-18 21:38:13 -03:00
|
|
|
bool run_debug_shell(AP_HAL::BetterStream *stream) override { return false; }
|
2018-01-05 02:19:51 -04:00
|
|
|
uint32_t available_memory() override;
|
|
|
|
|
2018-01-09 17:18:28 -04:00
|
|
|
// Special Allocation Routines
|
2018-07-18 21:38:13 -03:00
|
|
|
void *malloc_type(size_t size, AP_HAL::Util::Memory_Type mem_type) override;
|
|
|
|
void free_type(void *ptr, size_t size, AP_HAL::Util::Memory_Type mem_type) override;
|
2018-01-09 17:18:28 -04:00
|
|
|
|
2018-12-08 22:34:39 -04:00
|
|
|
#ifdef ENABLE_HEAP
|
|
|
|
// heap functions, note that a heap once alloc'd cannot be dealloc'd
|
2019-08-13 22:00:17 -03:00
|
|
|
virtual void *allocate_heap_memory(size_t size) override;
|
|
|
|
virtual void *heap_realloc(void *heap, void *ptr, size_t new_size) override;
|
2020-03-16 04:22:18 -03:00
|
|
|
virtual void *std_realloc(void *ptr, size_t new_size) override;
|
2018-12-08 22:34:39 -04:00
|
|
|
#endif // ENABLE_HEAP
|
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
/*
|
|
|
|
return state of safety switch, if applicable
|
|
|
|
*/
|
|
|
|
enum safety_state safety_switch_state(void) override;
|
|
|
|
|
2018-06-29 04:54:51 -03:00
|
|
|
// get system ID as a string
|
|
|
|
bool get_system_id(char buf[40]) override;
|
2018-09-28 12:30:48 -03:00
|
|
|
bool get_system_id_unformatted(uint8_t buf[], uint8_t &len) override;
|
|
|
|
|
2021-04-03 19:00:38 -03:00
|
|
|
bool toneAlarm_init(uint8_t types) override;
|
2018-07-27 04:12:26 -03:00
|
|
|
void toneAlarm_set_buzzer_tone(float frequency, float volume, uint32_t duration_ms) override;
|
2021-04-03 19:00:38 -03:00
|
|
|
static uint8_t _toneAlarm_types;
|
2018-02-01 11:25:03 -04:00
|
|
|
|
2019-04-11 06:51:10 -03:00
|
|
|
// return true if the reason for the reboot was a watchdog reset
|
2019-04-19 22:25:18 -03:00
|
|
|
bool was_watchdog_reset() const override;
|
2019-04-19 21:28:15 -03:00
|
|
|
|
2020-03-29 19:27:34 -03:00
|
|
|
#if CH_DBG_ENABLE_STACK_CHECK == TRUE
|
2020-03-27 17:29:12 -03:00
|
|
|
// request information on running threads
|
2020-12-30 02:44:19 -04:00
|
|
|
void thread_info(ExpandingString &str) override;
|
2020-03-29 19:27:34 -03:00
|
|
|
#endif
|
2020-11-21 12:00:11 -04:00
|
|
|
#if CH_CFG_USE_SEMAPHORES
|
|
|
|
// request information on dma contention
|
2020-12-30 02:44:19 -04:00
|
|
|
void dma_info(ExpandingString &str) override;
|
2020-11-21 12:00:11 -04:00
|
|
|
#endif
|
2021-01-22 06:32:30 -04:00
|
|
|
#if CH_CFG_USE_HEAP == TRUE
|
|
|
|
void mem_info(ExpandingString &str) override;
|
|
|
|
#endif
|
2021-01-16 01:01:04 -04:00
|
|
|
|
|
|
|
#if HAL_ENABLE_SAVE_PERSISTENT_PARAMS
|
|
|
|
// apply persistent parameters to current parameters
|
|
|
|
void apply_persistent_params(void) const;
|
|
|
|
#endif
|
|
|
|
|
2021-01-16 18:22:29 -04:00
|
|
|
#if HAL_ENABLE_SAVE_PERSISTENT_PARAMS
|
|
|
|
// save/load key persistent parameters in bootloader sector
|
|
|
|
bool load_persistent_params(ExpandingString &str) const override;
|
|
|
|
#endif
|
2020-12-05 15:16:27 -04:00
|
|
|
// request information on uart I/O
|
|
|
|
virtual void uart_info(ExpandingString &str) override;
|
2021-01-16 18:22:29 -04:00
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
private:
|
2018-02-09 23:55:22 -04:00
|
|
|
#ifdef HAL_PWM_ALARM
|
2018-07-24 22:29:44 -03:00
|
|
|
struct ToneAlarmPwmGroup {
|
|
|
|
pwmchannel_t chan;
|
|
|
|
PWMConfig pwm_cfg;
|
|
|
|
PWMDriver* pwm_drv;
|
|
|
|
};
|
|
|
|
|
|
|
|
static ToneAlarmPwmGroup _toneAlarm_pwm_group;
|
2018-02-09 23:55:22 -04:00
|
|
|
#endif
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2018-06-14 02:31:33 -03:00
|
|
|
/*
|
|
|
|
set HW RTC in UTC microseconds
|
|
|
|
*/
|
|
|
|
void set_hw_rtc(uint64_t time_utc_usec) override;
|
|
|
|
|
|
|
|
/*
|
|
|
|
get system clock in UTC microseconds
|
|
|
|
*/
|
|
|
|
uint64_t get_hw_rtc() const override;
|
2019-05-26 22:45:30 -03:00
|
|
|
#if !defined(HAL_NO_FLASH_SUPPORT) && !defined(HAL_NO_ROMFS_SUPPORT)
|
2019-10-24 23:15:25 -03:00
|
|
|
FlashBootloader flash_bootloader() override;
|
2018-08-29 10:16:17 -03:00
|
|
|
#endif
|
2018-12-08 22:34:39 -04:00
|
|
|
|
|
|
|
#ifdef ENABLE_HEAP
|
|
|
|
static memory_heap_t scripting_heap;
|
|
|
|
#endif // ENABLE_HEAP
|
|
|
|
|
2019-05-09 04:49:32 -03:00
|
|
|
// stm32F4 and F7 have 20 total RTC backup registers. We use the first one for boot type
|
|
|
|
// flags, so 19 available for persistent data
|
|
|
|
static_assert(sizeof(persistent_data) <= 19*4, "watchdog persistent data too large");
|
2021-01-16 01:01:04 -04:00
|
|
|
|
|
|
|
#if HAL_ENABLE_SAVE_PERSISTENT_PARAMS
|
|
|
|
// save/load key persistent parameters in bootloader sector
|
|
|
|
bool get_persistent_params(ExpandingString &str) const;
|
|
|
|
#endif
|
2018-01-05 02:19:51 -04:00
|
|
|
};
|