From d894eb01e9c979d0eb51f9495a7cf7281c213302 Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Sun, 4 Sep 2022 18:39:21 +0200 Subject: removed old test --- fw/fe310/test/fs.c | 127 ----------------------------------------------------- 1 file changed, 127 deletions(-) delete mode 100644 fw/fe310/test/fs.c (limited to 'fw/fe310/test/fs.c') diff --git a/fw/fe310/test/fs.c b/fw/fe310/test/fs.c deleted file mode 100644 index 0b3d4dc..0000000 --- a/fw/fe310/test/fs.c +++ /dev/null @@ -1,127 +0,0 @@ -#include -#include -#include -#include - -#include -#include -#include -#include -#include - -#include -#include -#include - -#include -#include - -#include "fs.h" - -FATFS fs; - -#define TEXT_SIZE 128 -#define TEXT_FN "test.txt" -#define KEY "passwordpassword" - -PARTITION VolToPart[FF_VOLUMES] = { - {0, 1} /* "0:" ==> 1st partition on the pd#0 */ -}; - -static EOSSDCCrypto sdcc; -static AESCtx ctx_crypt; -static AESCtx ctx_essiv; - -void app_fs(EVEWindow *window, EVEViewStack *stack) { - EVEFormSpec spec[] = { - { - .label.title = "Text", - .widget.type = EVE_WIDGET_TYPE_STR, - .widget.tspec.str.str_size = TEXT_SIZE, - }, - }; - EVEForm *form = eve_form_create(window, stack, spec, 1, NULL, NULL, app_fs_close); - EVEStrWidget *text = (EVEStrWidget *)eve_page_widget(&form->p, 0); - FIL f; - FRESULT rv; - - eos_spi_select(EOS_SPI_DEV_SDC); - rv = f_open(&f, TEXT_FN, FA_READ); - printf("f_open:%d\n", rv); - if (!rv) { - UINT r; - - rv = f_read(&f, text->str, TEXT_SIZE-1, &r); - printf("f_read:%d\n", rv); - if (rv != FR_OK) r = 0; - text->str[r] = '\0'; - f_close(&f); - } - eos_spi_select(EOS_SPI_DEV_EVE); - eve_strw_update(text); -} - -void app_fs_close(EVEForm *form) { - EVEStrWidget *text = (EVEStrWidget *)eve_page_widget(&form->p, 0); - FIL f; - FRESULT rv; - - eos_spi_select(EOS_SPI_DEV_SDC); - rv = f_open(&f, TEXT_FN, FA_WRITE | FA_CREATE_ALWAYS); - printf("f_open:%d\n", rv); - if (!rv) { - UINT w; - - rv = f_write(&f, text->str, strlen(text->str), &w); - printf("f_write:%d\n", rv); - f_close(&f); - } - eos_spi_select(EOS_SPI_DEV_EVE); - eve_form_destroy(form); -} - -void app_fs_init(void) { - FRESULT rv; - - eos_sdcc_init(&sdcc, KEY, &ctx_crypt, (eve_sdcc_init_t)aes_init, (eve_sdcc_crypt_t)aes_cbc_encrypt, (eve_sdcc_crypt_t)aes_cbc_decrypt, &ctx_essiv, (eve_sdcc_init_t)aes_init, (eve_sdcc_essiv_t)aes_ecb_encrypt); - eos_spi_select(EOS_SPI_DEV_SDC); - rv = f_mount(&fs, "", 1); - printf("f_mount:%d\n", rv); - if (rv == FR_NO_FILESYSTEM) { - uint8_t w[FF_MAX_SS]; - LBA_t plist[] = {100, 0}; - - rv = f_fdisk(0, plist, w); - printf("f_fdisk:%d\n", rv); - rv = f_mkfs("0:", 0, w, sizeof(w)); - printf("f_mkfs:%d\n", rv); - rv = f_mount(&fs, "", 1); - printf("f_mount:%d\n", rv); - } - - if (rv == FR_OK) { - FIL f; - UINT w; - char *msg = "PERA JE CAR!"; - - rv = f_open(&f, TEXT_FN, FA_READ); - printf("f_open:%d\n", rv); - if (!rv) { - UINT r; - char _msg[TEXT_SIZE]; - - memset(_msg, 0, sizeof(_msg)); - rv = f_read(&f, _msg, sizeof(_msg), &r); - printf("f_read:%d %u %s\n", rv, r, _msg); - f_close(&f); - } else { - rv = f_open(&f, TEXT_FN, FA_WRITE | FA_CREATE_ALWAYS); - printf("f_open:%d\n", rv); - rv = f_write(&f, msg, strlen(msg), &w); - printf("f_write:%d\n", rv); - } - f_close(&f); - - } - eos_spi_deselect(); -} \ No newline at end of file -- cgit v1.2.3