Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ardupilot
GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/AP_Bootloader/flash_from_sd.h
9498 views
1
#pragma once
2
3
#include "AP_Bootloader_config.h"
4
5
#if AP_BOOTLOADER_FLASH_FROM_SD_ENABLED
6
7
#include <AP_HAL_ChibiOS/sdcard.h>
8
#include <stdbool.h>
9
10
bool flash_from_sd();
11
12
#endif // AP_BOOTLOADER_FLASH_FROM_SD_ENABLED
13
14