Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update code from code feedback | Michael Spradling | 2015-08-16 | 2 | -7/+8 |
| | |||||
* | Add CRC Driver | Michael Spradling | 2015-08-16 | 8 | -1/+1011 |
| | | | | | | | | | | | | | | | | | | | | | | This patch includes a high level and two low level drivers. The high level driver is enabled with flag HAL_USE_CRC The low level drivers include: * Hardware CRC for the STM32 cortex processor lines.(when supported) * Enabled with flag STM32_CRC_USE_CRC1 * DMA is enabled with CRC_USE_DMA * SYNC api will use DMA, but put calling thread to sleep * ASYNC api enabled. * DMA Disabled * SYNC api spin while calculating CRC * ASYNC api disabled * Software CRC (3 modes) * CRCSW_CRC32_TABLE - Enables crc32 with lookup table. * CRCSW_CRC16_TABLE - Enables crc16 with lookup tables. * CRCSW_PROGRAMMBLE - Enables any crc done with computation. * Can calculate any crc configuration. * CRC_USE_DMA obviously not support with software CRC | ||||
* | Add EXT driver for nRF51 | Stephen Caudle | 2015-08-09 | 6 | -1/+501 |
| | |||||
* | Merge pull request #19 from doceme/nrf51-spi | Fabio Utzig | 2015-08-06 | 4 | -1/+609 |
|\ | | | | | Add SPI support for nRF51 | ||||
| * | Add SPI support for nRF51 | Stephen Caudle | 2015-07-27 | 4 | -1/+609 |
| | | |||||
* | | Improved FSMC. | barthess | 2015-08-04 | 3 | -16/+32 |
| | | | | | | | | SRAM configuration is much more flexible now. | ||||
* | | Merge branch 'tiva_i2c_fix' | marcoveeneman | 2015-07-29 | 1 | -1/+1 |
|\ \ | |/ |/| | |||||
| * | Tiva. I2C. Fixed bug where number of bytes read is 2 more then requested. ↵ | marcoveeneman | 2015-04-24 | 1 | -1/+1 |
| | | | | | | | | This only occurs when the number of bytes to read is 3 or more. | ||||
* | | Merge pull request #18 from doceme/nrf51-board | Fabio Utzig | 2015-07-27 | 1 | -32/+32 |
|\ \ | | | | | | | Update nRF51 Waveshare board file | ||||
| * | | Update nRF51 Waveshare board file | Stephen Caudle | 2015-07-26 | 1 | -32/+32 |
| | | | |||||
* | | | nRF51: Remove unnecessary direction setting | Stephen Caudle | 2015-07-26 | 1 | -6/+0 |
|/ / | |||||
* | | Cleanup nRF51 PAL driver | Stephen Caudle | 2015-07-25 | 2 | -101/+71 |
| | | |||||
* | | Add nRF51 bitfield header file | Stephen Caudle | 2015-07-23 | 2 | -0/+7090 |
| | | |||||
* | | Removed dependency on ST library for SDRAM | Andrea Zoppi | 2015-06-28 | 2 | -5/+5 |
| | | |||||
* | | Minor changes | Andrea Zoppi | 2015-06-27 | 4 | -229/+234 |
| | | |||||
* | | ILI9341 driver moved to devices_lib | Andrea Zoppi | 2015-06-27 | 1 | -3/+3 |
| | | |||||
* | | Old definitions removed | Andrea Zoppi | 2015-06-27 | 3 | -61/+1 |
| | | |||||
* | | LTDC and DMA2D ported to ChibiOS/RT 3 | TexZK | 2015-06-24 | 5 | -2/+8383 |
| | | | | | | | | | | + LTDC and DMA2D peripheral drivers + LTDC and DMA2D demo project | ||||
* | | Merge branch 'master' of github.com:ChibiOS/ChibiOS-Contrib | barthess | 2015-06-02 | 14 | -3/+2721 |
|\ \ | |||||
| * | | EICU. Fixed incorrect frequency calculation. | barthess | 2015-06-02 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | Timers 9, 10, 11 connected to APB2 but constant in driver initialization code was taken for APB1. | ||||
| * | | Fixed copypaste error in comment | barthess | 2015-06-02 | 1 | -1/+1 |
| | | | |||||
| * | | Add tx/rx pin configuration to SerialConfig | Fabio Utzig | 2015-05-15 | 2 | -8/+16 |
| | | | |||||
| * | | Add PAL configuration | Fabio Utzig | 2015-05-15 | 1 | -6/+49 |
| | | | |||||
| * | | Add some GPIO pin definitions | Fabio Utzig | 2015-05-15 | 1 | -6/+11 |
| | | | |||||
| * | | Remove GPIO pin initialization | Fabio Utzig | 2015-05-15 | 1 | -5/+0 |
| | | | |||||
| * | | Add basic PAL driver | Fabio Utzig | 2015-05-15 | 3 | -0/+503 |
| | | | |||||
| * | | Use sleep/wakeup for serial driver top-half | Fabio Utzig | 2015-05-14 | 2 | -14/+6 |
| | | | |||||
| * | | Fix some issues with serial driver | Fabio Utzig | 2015-05-14 | 1 | -13/+49 |
| | | | |||||
| * | | Add initial serial driver | Fabio Utzig | 2015-05-13 | 3 | -0/+327 |
| | | | |||||
| * | | Add TIMER0 based ticker for OS | Fabio Utzig | 2015-05-13 | 1 | -0/+48 |
| | | | |||||
| * | | Don't hang boot | Fabio Utzig | 2015-05-13 | 1 | -3/+0 |
| | | | |||||
| * | | Add basic board support | Fabio Utzig | 2015-05-12 | 3 | -0/+88 |
| | | | |||||
| * | | Add basic HAL/ST drivers | Fabio Utzig | 2015-05-12 | 4 | -0/+355 |
| | | | |||||
| * | | Remove PAL, add ST | Fabio Utzig | 2015-05-12 | 1 | -1/+1 |
| | | | |||||
| * | | Merge master | Fabio Utzig | 2015-05-10 | 8 | -205/+166 |
| |\ \ | |||||
| * | | | Add initial system header + makefile | Fabio Utzig | 2015-04-29 | 2 | -0/+1321 |
| | |/ | |/| | |||||
* | | | Merge branch 'master' of github.com:ChibiOS/ChibiOS-Contrib | barthess | 2015-05-08 | 1 | -22/+30 |
|\ \ \ | | |/ | |/| | |||||
| * | | Updated board.h file | barthess | 2015-05-07 | 1 | -22/+30 |
| | | | |||||
* | | | NAND. Minor improvements | barthess | 2015-05-08 | 1 | -19/+16 |
|/ / | |||||
* | | Fixed copyright notes | barthess | 2015-05-02 | 5 | -62/+40 |
| | | |||||
* | | NAND code changed to use bitmap class | barthess | 2015-05-02 | 4 | -121/+96 |
|/ | |||||
* | Tiva. ST. Moved ST interrupt priority check from hal_lld to st_lld. | marcoveeneman | 2015-04-16 | 3 | -10/+5 |
| | |||||
* | Tiva. MAC. Added check for valid interrupt priority. | marcoveeneman | 2015-04-16 | 1 | -0/+4 |
| | |||||
* | Tiva. EXT. Added checks for valid interrupt priorities. | marcoveeneman | 2015-04-16 | 1 | -0/+160 |
| | |||||
* | Tiva. Replaced all references to CORTEX_IS_VALID_KERNEL_PRIORITY with ↵ | marcoveeneman | 2015-04-16 | 7 | -47/+47 |
| | | | | OSAL_IRQ_IS_VALID_PRIORITY. | ||||
* | Merge branch 'tiva_ext_driver' | marcoveeneman | 2015-04-14 | 5 | -2/+1353 |
|\ | |||||
| * | Tiva. EXT. Changed name of ext_serve_port_interrupt and ext_serve_pin_interrupt. | marcoveeneman | 2015-04-14 | 1 | -36/+36 |
| | | |||||
| * | Tiva. EXT. Fixed typo in ext_serve_pin_interrupt macro. | marcoveeneman | 2015-04-14 | 1 | -1/+1 |
| | | |||||
| * | Tiva. EXT. Wrapped ext_serve_port_interrupt and ext_serve_pin_interrupt in a ↵ | marcoveeneman | 2015-04-14 | 1 | -32/+36 |
| | | | | | | | | do{}while(0) | ||||
| * | Tiva. EXT. Added ext_lld files and added ext_lld.c to platform.mk | marcoveeneman | 2015-04-14 | 4 | -2/+1344 |
| | |