Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | USBSerial docs fix. | Marti Bolivar | 2011-03-04 | 1 | -11/+11 |
| | |||||
* | Rewrote Print class. | Marti Bolivar | 2011-02-24 | 2 | -22/+48 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The old Print class couldn't print uint64 values, and featured hand-hacked functionality better handled by snprintf(). Redid it using snprintf(), using "[u]int[8,16,32,64]" types for more clarity, and eliminated some private methods in favor of auxiliary functions in Print.cpp. Breaking compatibility with original implementation in three ways: - Print::print(double) is now accurate to 6 digits, rather than 2; this is consistent with the default behavior of the %f format specifier, and if you're using floating point, it's slow enough that you probably want the increased accuracy. - The only bases you can print a number to are 2, 8, 10, and 16. 8, 10, and 16 already have format specifiers, and 2 is an important special case; others complicate matters unnecessarily. - Printing numbers in bases other than 10 treats them as unsigned quantities (i.e., won't print '-' characters). This is more consistent with C++'s behavior for hexadecimal and octal literals (e.g., 0xFFFFFFFF has type uint32). Updated HardwareSerial and USBSerial class documentation to reflect the new behavior. | ||||
* | docs fixes | Marti Bolivar | 2011-02-16 | 2 | -8/+23 |
| | |||||
* | Fixed docs bug where we say "long" when we mean "long long" | Marti Bolivar | 2011-02-09 | 20 | -148/+161 |
| | |||||
* | Documentation bugfixes | Marti Bolivar | 2011-02-08 | 3 | -21/+39 |
| | |||||
* | removed flush() from SerialUSB docs. | Marti Bolivar | 2010-12-21 | 1 | -6/+0 |
| | |||||
* | Finalized 0.0.9 documentation. | Marti Bolivar | 2010-12-15 | 20 | -199/+789 |
| | |||||
* | cleaning up previous commits. | Marti Bolivar | 2010-12-03 | 90 | -6714/+0 |
| | | | | | | note that addition of new files under docs/source/lang/api and docs/source/lang/cpp which were just copies of files in docs/source/lang/ imply that change history is lost to git. | ||||
* | docs, now with style | Hanna Mendes Levitin | 2010-12-01 | 92 | -0/+6738 |
| | |||||
* | New documentation content is done. Next step is to theme. | Marti Bolivar | 2010-11-29 | 4 | -15/+23 |
| | |||||
* | Finished converting the Arduino docs | Marti Bolivar | 2010-11-29 | 87 | -1148/+1534 |
| | |||||
* | reorganized all the arduino/ docs into a lang/ subdirectory since | Marti Bolivar | 2010-11-28 | 100 | -0/+6891 |
they're properly CC attributed now. |