aboutsummaryrefslogtreecommitdiffstats
path: root/readme.txt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-10-13 11:45:07 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-10-13 11:45:07 +0000
commit4fab7c06d1b0c9e61f6106b5b2a5c2c0b5694c34 (patch)
treee7fdadc85d78aa2143d0082d26351da49f7f2d53 /readme.txt
parentec7455babe131ee0b8a4c228ed00a02396619a7d (diff)
downloadChibiOS-4fab7c06d1b0c9e61f6106b5b2a5c2c0b5694c34.tar.gz
ChibiOS-4fab7c06d1b0c9e61f6106b5b2a5c2c0b5694c34.tar.bz2
ChibiOS-4fab7c06d1b0c9e61f6106b5b2a5c2c0b5694c34.zip
ADC, SPI, PWM driver enhancements.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2254 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt10
1 files changed, 6 insertions, 4 deletions
diff --git a/readme.txt b/readme.txt
index a0fbd9688..b03872d05 100644
--- a/readme.txt
+++ b/readme.txt
@@ -100,10 +100,12 @@
- NEW: New ADC driver model, the new model supports both synchronous and
asynchronous operations and, in general, simplifies the implementation of the
low level driver. The state diagram changed slightly changed so be careful.
-- NEW: Added pwmEnableChannelI() and pwmDisableChannelI() APIs to the PWM
- driver in order to allow channel reprogramming from within callbacks or
- interrupt handlers. The new APIs are implemented as macros so there is
- no footprint overhead.
+- NEW: Improved PWM driver model, added several macros that helps to setup
+ configuration structures and to specify pulse widths also as percentages or
+ degrees using a fixed point notation. Added new pwmEnableChannelI() and
+ pwmDisableChannelI() APIs in order to allow channel reprogramming from
+ within callbacks or interrupt handlers, the new APIs are implemented as
+ macros so there is no footprint overhead.
- NEW: Added driver fields and initialization hooks for the callback-based
drivers. The hooks are named XXX_DRIVER_EXT_FIELDS and
XXX_DRIVER_EXT_INIT_HOOK().