aboutsummaryrefslogtreecommitdiff
path: root/wirish/comm
AgeCommit message (Collapse)Author
2012-04-11Move wirish/comm/*.cpp into wirish.Marti Bolivar
The wirish/comm/ directory is stupid. Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
2012-04-11Move public headers to include directories; related cleanups.Marti Bolivar
Move libmaple/*.h to (new) libmaple/include/libmaple/. The new accepted way to include a libmaple header foo.h is with: #include <libmaple/foo.h> This is more polite in terms of the include namespace. It also allows us to e.g. implement the Arduino SPI library at all (which has header SPI.h; providing it was previously impossible on case-insensitive filesystems due to libmaple's spi.h). Similarly for Wirish. The old include style (#include "header.h") is now deprecated. libmaple/*.h: - Change include guard #defines from _FOO_H_ to _LIBMAPLE_FOO_H_. - Add license headers where they're missing - Add conditional extern "C" { ... } blocks where they're missing (they aren't always necessary, but we might was well do it against the future, while we're at it.). - Change includes from #include "foo.h" to #include <libmaple/foo.h>. - Move includes after extern "C". - Remove extra trailing newlines Note that this doesn't include the headers under libmaple/usb/ or libmaple/usb/usb_lib. These will get fixed later. libmaple/*.c: - Change includes from #include "foo.h" to #include <libmaple/foo.h>. Makefile: - Add I$(LIBMAPLE_PATH)/include/libmaple to GLOBAL_FLAGS. This allows for users (including Wirish) to migrate their code, but should go away ASAP, since it slows down compilation. Wirish: - Move wirish/**/*.h to (new) wirish/include/wirish/. This ignores the USB headers, which, as usual, are getting handled after everything else. - Similarly generify wirish/boards/ structure. For each supported board "foo", move wirish/boards/foo.h and wirish/boards/foo.cpp to wirish/boards/foo/include/board/board.h and wirish/boards/foo/board.cpp, respectively. Also remove the #ifdef hacks around the .cpp files. - wirish/rules.mk: put wirish/boards/foo/include in the include path (and add wirish/boards/foo/board.cpp to the list of sources to be compiled). This allows saying: #include <board/board.h> instead of the hack currently in place. We can allow the user to override this setting later to make adding custom board definitions easier. - Disable -Werror in libmaple/rules.mk, as the current USB warnings don't let the olimex_stm32_h103 board compile. We can re-enable -Werror once we've moved the board-specific bits out of libmaple proper. libraries, examples: - Update includes accordingly. - Miscellaneous cosmetic fixups. Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
2011-09-07Update outdated stm32.h usages.Marti Bolivar
stm32.h has been updated to prefix its definitions. Update the rest of libmaple to take this into account.
2011-08-16HardwareSerial.h: Remove documentation TODO.Marti Bolivar
It's difficult to document HardwareSerial's interface fully in HardwareSerial.h, since most of the methods people care about are inherited from Print, anyway. Stick with documenting this interface by hand for the foreseeable future.
2011-08-16HardwareSerial.cpp: Respect PCLK1 and PCLK2.Marti Bolivar
2011-08-16HardwareSerial: Add pin accessors.Marti Bolivar
2011-08-16HardwareSerial: trivial code reorderingMarti Bolivar
2011-08-16HardwareSPI.cpp: minor HardwareSPI::send() cleanup.Marti Bolivar
2011-08-16HardwareSPI: Add pin accessors.Marti Bolivar
2011-06-11Remove reST documentation, attendant updates.Marti Bolivar
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
2011-06-07Keep it 80-column clean.Marti Bolivar
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
2011-05-20HardwareSerial.h: adding documentation TODO for 0.1.0Marti Bolivar
2011-05-12Fixing HardwareSPI.h mistake for non-LeafLabs boards.Marti Bolivar
"#warn" -> "#warning"; oops.
2011-05-04SPI fixups.Marti Bolivar
Initial post-review changes based on thread here: https://github.com/leaflabs/libmaple/commit/77f707d7b87fce284945fc9fe21c824c18c4c93d#comments
2011-04-28SPI refactor.Marti Bolivar
Still a polling driver, but the libmaple proper interface exposes enough that users enable the various interrupts and define their own IRQ handlers if they feel like it. Wirish HardwareSPI interface was largely redone; it's more like the Arduino implementation now, although there are some differences when I didn't like their API. The old methods are still there, but are deprecated and slated for deletion in 0.1.0. New board-specific values: BOARD_NR_SPI, BOARD_SPIx_NSS_PIN, BOARD_SPIx_MOSI_PIN, BOARD_SPIx_MISO_PIN, and BOARD_SPIx_SCK_PIN, for x from 1 to BOARD_NR_SPI. Documentation was updated appropriately.
2011-04-11USART bugfix.Marti Bolivar
USART refactor commit f6f9a1122706ed336c52c984d76219dee0594487 only worked for USART1.
2011-04-07USART refactor.Marti Bolivar
2011-03-30Board-specific values; corresponding QA test generalizations.Marti Bolivar
Various board-specific #defines and arrays of pins added. For the changelog (some of this information predates this commit): * wirish/boards.h now declares the following arrays of pin numbers: * boardPWMPins - PWM-capable pins * boardADCPins - ADC-capable pins * boardUsedPins - pins already in use, e.g. BOARD_BUTTON_PIN It also declares a bool boardUsesPin(uint8 pin) function for convenient testing of whether a pin is in use. * wirish/boards/*.h now define: * BOARD_USART1_TX_PIN * BOARD_USART1_RX_PIN * BOARD_USART2_TX_PIN * BOARD_USART2_RX_PIN * BOARD_USART3_TX_PIN * BOARD_USART3_RX_PIN * BOARD_NR_GPIO_PINS (renamed from NR_GPIO_PINS) * BOARD_NR_USARTS (renamed from NR_USARTS) * BOARD_NR_PWM_PINS * BOARD_NR_ADC_PINS * BOARD_NR_USED_PINS * wirish/boards/maple_native.h now defines: * BOARD_UART4_TX_PIN * BOARD_UART4_RX_PIN * BOARD_UART5_TX_PIN * BOARD_UART5_RX_PIN (Unfortunately, wirish/boards/maple_RET6.h cannot, since at least one of the UART4/UART5 pins are used already; this will require layout changes for a wide-release Maple form factor RET6 board). * wirish/boards/*.cpp all include the corresponding array definitions. They all live in flash by default, thanks to the new __FLASH__ macro in wirish/wirish_types.h, which is a synonym for the existing __attr_flash #define in libmaple/libmaple_types.h. The documentation was updated to include this information. It also gained various FIXME/TODO comments related to its generalization across boards. The quality assurance-related examples (examples/qa-slave-shield.cpp and examples/test-session.cpp) now make heavy use of board-specific values to ensure portability.
2011-03-24Initial timer refactor.Marti Bolivar
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.
2011-03-11[WIP] GPIO refactor: seems ok, ready for reviewMarti Bolivar
2010-12-15Finalized 0.0.9 documentation.Marti Bolivar
2010-12-14Merge branch 'master' into newdocMarti Bolivar
2010-12-08Servo library tested and debugged.Marti Bolivar
Some additional HardwareTimer methods introduced to make this convenient; ancillary libmaple/timers.h changes resulted.
2010-11-29Finished converting the Arduino docsMarti Bolivar
2010-09-28Fix HardwareSPI to pass SPI modes for CPOL and CPHAPerry Hung
2010-09-27cleanupsMarti Bolivar
2010-09-05timer refactor (c, not c++)bnewbold
also removed an old ASSERT()
2010-08-31Further wirish portability progressbnewbold
Sort of ugly changes. Compiles but untested.
2010-08-04New usart implementation:Perry Hung
Fixed a bug where the maximum baud rate was incorrectly set to 225000 General cleanup Use new rcc and nvic APIs
2010-07-20good quality vga leaf logo; usb+systick disabledbnewbold
refactored timers and added interrupt behavior. see notes and comments... also includes a crude vga hack that doesn't use timers.
2010-07-19added Serial.flush()bnewbold
2010-07-18added SerialN.end()bnewbold
2010-06-04Preliminary wirish USBSerial implementation.Perry Hung
-updated examples -removed HardwareUSB -cleaned up a handful of includes
2010-05-27[for AJ] added new HardwareUsb implementation. hack.bnewbold
2010-05-21Finalized the libmaple changes required by newboot. Added setupUSB() to ↵AJM
wirish init this involved some some changes to copy-to-ide, WProgram.h, and the makefile. Separated the reset.py from the wait.py so that the program closes the serial port correctly.
2010-04-28Various SPI changes.Perry Hung
-Read DR after each master send, return the response. -Added a send function to allow you to pass buffers to the SPI peripheral instead of goin a byte at a time.
2010-04-27Added a spi send block functionPerry Hung
2010-04-25Fixed two compiler warnings in spiPerry Hung
2010-04-25Refactoring:Perry Hung
The 'core' directory has now been renamed to 'wirish.' Wirish is our version of the Arduino Wiring language.