aboutsummaryrefslogtreecommitdiffstats
path: root/readme.txt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-08-05 10:30:37 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-08-05 10:30:37 +0000
commit04e29829b64a64a405125595dc371bd731766c68 (patch)
treeffaadc6d10888b4cbe7b574a5ccee2a26712662f /readme.txt
parent31981145cf8b3d43848bfeb75d21ae5e0b2e0a81 (diff)
downloadChibiOS-04e29829b64a64a405125595dc371bd731766c68.tar.gz
ChibiOS-04e29829b64a64a405125595dc371bd731766c68.tar.bz2
ChibiOS-04e29829b64a64a405125595dc371bd731766c68.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2114 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/readme.txt b/readme.txt
index 498e1b6e8..8b1e64b6a 100644
--- a/readme.txt
+++ b/readme.txt
@@ -55,13 +55,23 @@
+--test/ - Kernel test suite source code.
| +--coverage/ - Code coverage project.
+--testhal/ - HAL integration test demos.
+ +--STM32/ - STM32 HAL demos.
*****************************************************************************
*** Releases ***
*****************************************************************************
*** 2.1.2 ***
+- FIX: Fixed a documentation error regarding the ADC driver function
+ adcStartConversion() (bug 3039890)(backported to 2.0.3).
- NEW: Added a simple STM32 ADC demo under ./testhal/STM32/ADC.
+- NEW: Added pwmEnableChannelI() and pwmDisableChannelI() APIs to the PWM
+ driver in order to allow channel reprogramming from within callbacks or
+ other interrupt handlers. The new APIs are implemented as macros so there
+ is no footprint overhead.
+- NEW: Added a generic BaseFileStream interface for future File System
+ implementations or integrations (untested and not sure if it will stay or
+ change).
*** 2.1.1 ***
- FIX: Fixed insufficient stack size for idle thread (bug 3033624)(backported