summaryrefslogtreecommitdiff
path: root/fw/fe310/test/fs.c
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2022-08-09 23:07:38 +0200
committerUros Majstorovic <majstor@majstor.org>2022-08-09 23:07:38 +0200
commitb45c75151af9e31c2016fa30dc071f9695d6369c (patch)
tree590651bd3c37d0cb74a7414637b370d286368ff0 /fw/fe310/test/fs.c
parent76ed6228dc0b88840d01f99761ca09323bf11c51 (diff)
fixed test
Diffstat (limited to 'fw/fe310/test/fs.c')
-rw-r--r--fw/fe310/test/fs.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/fw/fe310/test/fs.c b/fw/fe310/test/fs.c
index 1dce3af..0b3d4dc 100644
--- a/fw/fe310/test/fs.c
+++ b/fw/fe310/test/fs.c
@@ -4,7 +4,7 @@
#include <string.h>
#include <eos.h>
-#include <sdc_crypto.h>
+#include <dev/sdc_crypto.h>
#include <eve/eve.h>
#include <eve/eve_kbd.h>
#include <eve/eve_font.h>
@@ -13,8 +13,6 @@
#include <eve/screen/page.h>
#include <eve/screen/form.h>
-#include <eve/widget/widgets.h>
-
#include <aes/aes.h>
#include <ff.h>
@@ -35,11 +33,11 @@ static AESCtx ctx_crypt;
static AESCtx ctx_essiv;
void app_fs(EVEWindow *window, EVEViewStack *stack) {
- EVEWidgetSpec spec[] = {
+ EVEFormSpec spec[] = {
{
.label.title = "Text",
.widget.type = EVE_WIDGET_TYPE_STR,
- .widget.spec.str.str_size = TEXT_SIZE,
+ .widget.tspec.str.str_size = TEXT_SIZE,
},
};
EVEForm *form = eve_form_create(window, stack, spec, 1, NULL, NULL, app_fs_close);