aboutsummaryrefslogtreecommitdiffstats
path: root/wirish/comm/HardwareSerial.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove reST documentation, attendant updates.Marti Bolivar2011-06-111-4/+4
| | | | | | | | | | | | | | | | | | | | | | The documentation covers topics not specifically relevant to libmaple, so it doesn't make sense for it to be part of the libmaple source distribution. Delete the docs/ tree, and prepare libmaple for use with the new leaflabs-docs repo, which will contain the docs from now on. * README: update to reflect this change * support/doxygen/Doxyfile: This is the old docs/Doxyfile * Makefile: Add a doxygen target * wirish/comm/HardwareSerial.h: fix reference to docs/. The comment informing maintainers that the HardwareSerial interface is documented by hand refers to the docs/ tree, which no longer exists. Update it to refer to the separate leaflabs-docs repository. * support/scripts/copy-to-ide: No longer build the documentation
* Keep it 80-column clean.Marti Bolivar2011-06-071-14/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | Go through overlong source code lines and convert as many of them as appropriate to be 80-column clean. This mostly affects license headers. Overlong lines are determined by running following from the libmaple base directory: $ ack-grep --nocolor --nogroup --cpp --cc --ignore-dir=usb -- '.{80}' Note that this excludes libmaple's usb subdirectory, which is still full of ST code that doesn't follow the libmaple source code guidelines. Contents of ~/.ackrc (these won't matter, but are included for completeness): --ignore-dir=docs --ignore-dir=build --type-set ld=.ld --type-set rst=.rst --type-set txt=.txt --type-set mk=.mk
* HardwareSerial.h: adding documentation TODO for 0.1.0Marti Bolivar2011-05-201-0/+2
|
* USART bugfix.Marti Bolivar2011-04-111-1/+3
| | | | | USART refactor commit f6f9a1122706ed336c52c984d76219dee0594487 only worked for USART1.
* USART refactor.Marti Bolivar2011-04-071-26/+24
|
* Initial timer refactor.Marti Bolivar2011-03-241-5/+7
| | | | | | | | | | | | | | | Basic PWM works. Had some problems in testing that might be due to USART bugs. HardwareTimer has been removed from the build for now; I will re-implement it in terms of the new libmaple API, but consider it deprecated. Let's come up with something better. Servo is implemented in terms of HardwareTimer, so it also has been temporarily removed from the build. pwmWrite() likely got a little bit less inefficient due to indirection, but the PIN_MAPs shrank by a pointer per PinMapping.
* [WIP] GPIO refactor: seems ok, ready for reviewMarti Bolivar2011-03-111-2/+2
|
* Merge branch 'master' into newdocMarti Bolivar2010-12-141-2/+4
|\
| * Servo library tested and debugged.Marti Bolivar2010-12-081-2/+4
| | | | | | | | | | Some additional HardwareTimer methods introduced to make this convenient; ancillary libmaple/timers.h changes resulted.
* | Finished converting the Arduino docsMarti Bolivar2010-11-291-1/+8
|/
* cleanupsMarti Bolivar2010-09-271-27/+27
|
* Further wirish portability progressbnewbold2010-08-311-0/+1
| | | | Sort of ugly changes. Compiles but untested.
* New usart implementation:Perry Hung2010-08-041-3/+14
| | | | | | Fixed a bug where the maximum baud rate was incorrectly set to 225000 General cleanup Use new rcc and nvic APIs
* added SerialN.end()bnewbold2010-07-181-0/+1
|
* Refactoring:Perry Hung2010-04-251-0/+53
The 'core' directory has now been renamed to 'wirish.' Wirish is our version of the Arduino Wiring language.