mbed library sources. Supersedes mbed-src. Fixes analogIn and analogOut problems for TARGET_STM32F3. Tested on NUCLEO-F303K8, using 3 analogout and 7 analogin channels simultaneously. Added ability for STM32F334R8 and STM32F303K8 to use all three channels of DAC simultaneously. https://developer.mbed.org/users/StevieWray/code/mbed-dev/ Added ability for TARGET_STM32F3 to use more than one ADC simultaneously. https://developer.mbed.org/questions/67997/NUCLEO-F303K8ADC/
Fork of mbed-dev by
Diff: common/Stream.cpp
- Revision:
- 28:8e1f0b362990
- Parent:
- 0:9b334a45a8ff
--- a/common/Stream.cpp Thu Nov 26 10:00:10 2015 +0000 +++ b/common/Stream.cpp Thu Nov 26 10:15:10 2015 +0000 @@ -15,8 +15,6 @@ */ #include "Stream.h" -#include <cstdarg> - namespace mbed { Stream::Stream(const char *name) : FileLike(name), _file(NULL) { @@ -108,4 +106,16 @@ return r; } +int Stream::vprintf(const char* format, std::va_list args) { + fflush(_file); + int r = vfprintf(_file, format, args); + return r; +} + +int Stream::vscanf(const char* format, std::va_list args) { + fflush(_file); + int r = vfscanf(_file, format, args); + return r; +} + } // namespace mbed