mbed-os

Fork of mbed-os by erkin yucel

Committer:
xuaner
Date:
Thu Jul 20 14:26:57 2017 +0000
Revision:
1:3deb71413561
Parent:
0:f269e3021894
mbed_os

Who changed what in which revision?

UserRevisionLine numberNew contents of line
elessair 0:f269e3021894 1 # Change Log
elessair 0:f269e3021894 2
elessair 0:f269e3021894 3 ## [mbed-os.5.2-rc1](https://github.com/ARMmbed/sal-stack-nanostack-eventloop/releases/tag/mbed-os.5.2-rc1) (24-Sep-2016)
elessair 0:f269e3021894 4 [Full Changelog](https://github.com/ARMmbed/sal-stack-nanostack-eventloop/compare/mbed-os-5.0-rc1...mbed-os.5.2-rc1)
elessair 0:f269e3021894 5
elessair 0:f269e3021894 6 **New features**
elessair 0:f269e3021894 7
elessair 0:f269e3021894 8 - Move configuration parameter resolution to separate header and allow user definable configuration header to be used.
elessair 0:f269e3021894 9 - Port eventloop system timer to use new tick timer functions platform_tick_timer_register, platform_tick_timer_start and platform_tick_timer_stop.
elessair 0:f269e3021894 10
elessair 0:f269e3021894 11 **Merged pull requests:**
elessair 0:f269e3021894 12
elessair 0:f269e3021894 13 commit 283299dbd744c91cb30810ad263798842905c054 (HEAD, tag: mbed-os.5.2-rc1, origin/master, origin/HEAD, master)
elessair 0:f269e3021894 14 Author: Jaakko Kukkohovi <jkukkohovi@gmail.com>
elessair 0:f269e3021894 15 Date: Fri Sep 23 10:05:55 2016 +0300
elessair 0:f269e3021894 16
elessair 0:f269e3021894 17 Change configuration method (#23)
elessair 0:f269e3021894 18
elessair 0:f269e3021894 19 Move configuration parameter resolution to separate header and allow
elessair 0:f269e3021894 20 user definable configuration header to be used.
elessair 0:f269e3021894 21
elessair 0:f269e3021894 22 commit 269b00fba6a637c363f7d1690db0889118bca010
elessair 0:f269e3021894 23 Author: Jaakko Kukkohovi <jkukkohovi@gmail.com>
elessair 0:f269e3021894 24 Date: Wed Sep 21 11:27:40 2016 +0300
elessair 0:f269e3021894 25
elessair 0:f269e3021894 26 Systimer using platform tick timer (#22)
elessair 0:f269e3021894 27
elessair 0:f269e3021894 28 * Port eventloop system timer to use new tick timer functions platform_tick_timer_register, platform_tick_timer_start and platform_tick_timer_stop.Existing functionality is preserved by implementing these functions by default using the high resolution timer as before
elessair 0:f269e3021894 29 * New configuration parameter use_platform_tick_timer disables the high resolution timer based tick timer implementation and allows platform to implement the tick timer functions.
elessair 0:f269e3021894 30 * New configuration parameter exclude_highres_timer removes the high resolution timer from the build thus providing only eventloop.
elessair 0:f269e3021894 31 * Minar support now implemented by providing platform tick timer using minar timers and implicitly using platform tick timers for eventloop when using minar
elessair 0:f269e3021894 32