Skip to content

Commit a824dcd

Browse files
committed
Bump version to v1.5.2, update patch and date in version.h; increase VFS max count to 20 in sdkconfig; add debug flush option in rs232.cpp
1 parent 09e7187 commit a824dcd

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

include/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212

1313
#define FN_VERSION_MAJOR 1
1414
#define FN_VERSION_MINOR 5
15-
#define FN_VERSION_PATCH 1
15+
#define FN_VERSION_PATCH 2
1616

1717
#define FN_VERSION_BUILD "a791667fe8645b03fc660f337bdb8cf8fe6b9cef"
1818

19-
#define FN_VERSION_DATE "2025-09-08 07:43:48"
19+
#define FN_VERSION_DATE "2025-12-17 08:35:55"
2020

21-
#define FN_VERSION_FULL "v1.5.1"
21+
#define FN_VERSION_FULL "v1.5.2"
2222

2323
#endif /* _VERSION_H */

lib/bus/rs232/rs232.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,12 +277,14 @@ void systemBus::service()
277277
{
278278
_modemDev->rs232_handle_modem();
279279
}
280+
#if 0
280281
else
281282
// Neither CMD nor active modem, so throw out any stray input data
282283
{
283284
//Debug_println("RS232 Srvc Flush");
284285
fnUartBUS.flush_input();
285286
}
287+
#endif // 0
286288

287289
// Handle interrupts from network protocols
288290
for (int i = 0; i < 8; i++)

sdkconfig.fujinet-rs232-s3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2437,7 +2437,7 @@ CONFIG_VFS_SUPPORT_SELECT=y
24372437
CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT=y
24382438
# CONFIG_VFS_SELECT_IN_RAM is not set
24392439
CONFIG_VFS_SUPPORT_TERMIOS=y
2440-
CONFIG_VFS_MAX_COUNT=8
2440+
CONFIG_VFS_MAX_COUNT=20
24412441

24422442
#
24432443
# Host File System I/O (Semihosting)

0 commit comments

Comments
 (0)