vtx: fix VTX_SETTINGS_POWER_COUNT and add dummy entries to saPowerNames
[inav.git] / src / main / msc / at32_msc_diskio.h
blob9ece8cf59cda199ba1198e1c3dd12d613b26d222
1 /*
2 * This file is part of ATBetaflight and INav.
4 * ATBetaflight and INav are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
8 * any later version.
10 * ATBetaflight and INav are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
20 * Author: jflyper (https://github.com/jflyper)
23 #pragma once
25 #include "emfat.h"
27 extern emfat_t emfat;
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
35 #include "usb_conf.h"
36 #include "usb_std.h"
40 uint8_t *get_inquiry(uint8_t lun);
41 usb_sts_type msc_disk_read(uint8_t lun, uint32_t addr, uint8_t *read_buf, uint32_t len);
42 usb_sts_type msc_disk_write(uint8_t lun, uint32_t addr, uint8_t *buf, uint32_t len);
43 usb_sts_type msc_disk_capacity(uint8_t lun, uint32_t *blk_nbr, uint32_t *blk_size);