| layout | post | ||||
|---|---|---|---|---|---|
| lang | en | ||||
| title | µOS++ v6.3.14 released | ||||
| author | Liviu Ionescu | ||||
| date | 2018-07-04 08:19:00 +0300 | ||||
| categories |
|
||||
| tags |
|
Version v6.3.14 is a µOS++ maintenance release. The main addition is the functional POSIX I/O subsystem, which supports character devices, block devices and file systems.
As of now, the µOS++ code is split between several GitHub projects and needs to be brought together to compose a project. To automate this process, some scripts are available from a separate project.
To update the local copy of the xPacks, use the
scripts.git/xpacks-update-repo.sh script.
To experiment with µOS++, please check the demo projects, available from GitHub, and use a similar structure for your projects.
- add support for Chan FatFS to the POSIX I/O layer; for some examples how
to use it, please see the
test/rtos/src/test-chan-fatfs.cppfile - add
file_descriptors_manager::used()to tell how many file descriptors are used - [#41]
add non-standard
timegm(), as the opposite ofgmtime() - implement alignment in memory allocators
- [#40]
posix: add
statvfs()/fstatvfs() - [#36]
posix: add
tcdrain()/tcflush()/tcgetattr()/tcsendbreak()/tcgetattr()to POSIX aliases - [#29] add thread top try/catch for exceptions; support for C++ exceptions was tested and is now available
- [#20] add sys/ioctl.h
- [#44]
os_main.cpp: add cast for
os_main_thread - [#35]
add missing
_fini() - [#17]
fix
_LITE_EXITredefinition - rtos/thread: unlock dangling mutexes
file_descriptors_manager::alloc()was renamedfile_descriptors_manager::allocate()andfile_descriptors_manager::free()was renamedfile_descriptors_manager::deallocate(), to be more in line with modern allocators- the standard thread classes were reorganised to be visible both in
std::andestd::namespaces
- the header files are still located below a
cmsis-plusfolder; to be replaced bymicro-os-plusin a future major release. - the
file_descriptors_managerclass is not yet synchronised