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 26, 2024
1 parent 44531d9 commit 3ab7275
Show file tree
Hide file tree
Showing 6 changed files with 850 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 libposixsrv
LIBS := libdummyfs libklog libposixsrv 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,6 +253,14 @@
#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

/* libposixsrv (disabled by default) */
#ifndef BUILTIN_POSIXSRV
#define BUILTIN_POSIXSRV 0
Expand Down
Loading

0 comments on commit 3ab7275

Please sign in to comment.