1 /* 2 * SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 #pragma once 7 8 enum { 9 // FatFS only allows to format disks with number of blocks greater than 128 10 DISK_BLOCK_NUM = 128 + 1, 11 DISK_BLOCK_SIZE = 512 12 }; 13 14 #define README_CONTENTS \ 15 "This is tinyusb's MassStorage Class demo.\r\n\r\n\ 16 If you find any bugs or get any questions, feel free to file an\r\n\ 17 issue at github.com/hathach/tinyusb" 18 19 void device_app(void); 20