Skip to content

Commit

Permalink
stm32l4x6: implement flash storage server
Browse files Browse the repository at this point in the history
DONE: RTOS-691
  • Loading branch information
jmaksymowicz committed Mar 19, 2024
1 parent ac27d41 commit 9adff67
Show file tree
Hide file tree
Showing 6 changed files with 858 additions and 13 deletions.
2 changes: 1 addition & 1 deletion multi/stm32l4-multi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ NAME := stm32l4-multi
SRCS := $(wildcard $(LOCAL_PATH)*.c)
LOCAL_HEADERS := stm32l4-multi.h
DEP_LIBS := libstm32l4-multi libtty libklog
LIBS := libdummyfs libklog
LIBS := libdummyfs libklog libmeterfs

include $(binary.mk)
8 changes: 8 additions & 0 deletions multi/stm32l4-multi/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -253,4 +253,12 @@
#define BUILTIN_DUMMYFS 1
#endif

#ifndef DUMMYFS_AS_ROOT
#define DUMMYFS_AS_ROOT 1 /* 0 - dummyfs is used only for devfs, 1 - dummyfs is used for root fs */
#endif

#ifndef BUILTIN_FLASH_SERVER
#define BUILTIN_FLASH_SERVER 1
#endif

#endif
Loading

0 comments on commit 9adff67

Please sign in to comment.