Commit Graph

1188 Commits

Author SHA1 Message Date
Josh Stewart 737ec5e126 Merge remote-tracking branch 'rogerclarkmelbourne/master' 2018-07-19 22:14:30 +10:00
Roger Clark d4b3cd114b
Merge pull request #534 from stevstrong/patch-16
F1: added function dma_get_count
2018-07-02 19:51:54 +10:00
stevstrong 2ae184754b
Update dma.h
small correction
2018-07-02 10:32:21 +02:00
stevstrong 8050dbfa58
F1: added function dma_get_count 2018-07-02 10:30:17 +02:00
Roger Clark 9d46a1c27d Alternative fix for issue #532 2018-06-23 17:00:17 +10:00
Roger Clark 683b6d2796
Merge pull request #533 from Serasidis/master
STM32F407 BKPSRAM Boundary address fix
2018-06-23 16:51:55 +10:00
Roger Clark ffce10ce29 Merge branch 'arpruss-master' 2018-06-23 16:51:12 +10:00
Vassilis Serasidis 2f4eaa7979 STM32F407 BKPSRAM Boundary address fix
Fix for the Backup RAM.

Example code:

...
#include <libmaple/bkp.h>
...

bkp_init();
bkp_enable_writes();
bkp_write(1, 0x1234); //Writes the value 0x1234 at Backup RAM address 1
bkp_disable_writes();
Serial.print(bkp_read(1)); //Print the value of the Backup RAM address 1
...
2018-06-22 19:49:05 +03:00
arpruss e8d8cdb75e update to latest version of USBComposite 2018-06-13 15:28:36 -05:00
arpruss 823744fb6c
Merge pull request #1 from rogerclarkmelbourne/master
update
2018-06-13 10:36:53 -05:00
Roger Clark 4db3994d1c Second attempt to add availableForWrite() to USB Serial 2018-05-27 16:35:06 +10:00
Roger Clark 141bcd2ad1 Attempt to add availableForWrite() to USB Serial 2018-05-27 16:26:19 +10:00
Roger Clark 9b37bc761b Merge branch 'VictorLamoine-master' 2018-05-27 15:53:04 +10:00
Roger Clark e08d2eb1cc minor change to SPI slave example 2018-05-27 15:52:53 +10:00
Roger Clark 5e634098ce Merge branch 'master' of https://github.com/VictorLamoine/Arduino_STM32 into VictorLamoine-master 2018-05-27 15:43:00 +10:00
Roger Clark 4f03ec8460 Merge branch 'me21-master' 2018-05-27 15:11:13 +10:00
Roger Clark 8fbd6f0f4e Merge branch 'master' of https://github.com/me21/Arduino_STM32 into me21-master 2018-05-27 15:01:51 +10:00
Roger Clark cd3cab3a79 Merge branch 'me21-enable-hsi' 2018-05-27 15:00:50 +10:00
Roger Clark 914ca36d9d Merge branch 'enable-hsi' of https://github.com/me21/Arduino_STM32 into me21-enable-hsi 2018-05-27 14:46:21 +10:00
Roger Clark 7e1dace22f Merge branch 'stevstrong-patch-12' 2018-05-27 14:43:43 +10:00
Roger Clark 6cdcbf0bb7 Merge branch 'patch-12' of https://github.com/stevstrong/Arduino_STM32 into stevstrong-patch-12 2018-05-27 14:35:10 +10:00
Roger Clark 2208bcbc5b Add define for ARDUINO_ARCH_STM32 to correspond with the official STM core and also with Adadfuit STM32 products 2018-05-23 19:37:08 +10:00
Roger Clark 6548456957 Change Wire.write() return types from void to size_t to be compatible with the Arduino API 2018-05-23 18:03:38 +10:00
Roger Clark 6a551bd9ab Ranemed FreeRTOS to FreeRTOS701 to prevent name clashes. see https://github.com/rogerclarkmelbourne/Arduino_STM32/issues/500 2018-05-22 09:29:23 +10:00
Alexandr Zarubkin 134dad770c Added preprocessor symbol USE_HSI_CLOCK which enables HSI clocking for generic variants. By default, HSE clocking scheme is used, as before this change.
Signed-off-by: Alexandr Zarubkin <me21@yandex.ru>
2018-05-21 17:02:24 +03:00
Alexandr Zarubkin 84c5a86109 Changed prescaler variable type to uint32. Fixes #520.
Signed-off-by: Alexandr Zarubkin <me21@yandex.ru>
2018-05-21 11:47:38 +03:00
Roger Clark 8fa6bb4596 Remove redundant #if'ed out code from maple hardware_serial.cpp 2018-05-11 09:03:04 +10:00
Roger Clark 4ec1b0f0cd Removed references to robotis bootloader, and also redundant usb reset code that used the wdt (possibly used by the robotis bootloader) 2018-05-10 20:25:02 +10:00
Roger Clark bc340be66a
Merge pull request #512 from victorpv/patch-2
Add SDIO pin definitions to the Maple RET6 variant
2018-05-04 09:30:19 +10:00
victorpv 6c33d73f63
Add SDIO pin definitions to the Maple RET6 variant
It was missing, but needed since that variant (RET6) includes the SDIO peripheral, so the files are included in the compilation.
2018-05-03 11:39:17 -05:00
Roger Clark 2d8c6197a9 Merge branch 'edogaldo-Allow-IRQ-overriding' 2018-04-29 11:21:58 +10:00
Roger Clark 6345cd6e6e Merge branch 'Allow-IRQ-overriding' of https://github.com/edogaldo/Arduino_STM32 into edogaldo-Allow-IRQ-overriding 2018-04-29 10:37:19 +10:00
Roger Clark 17d9d11086 Merge branch 'GitMoDu-master' 2018-04-28 17:09:30 +10:00
André e1ae43c826
Fixed missing return value. 2018-04-27 14:48:41 +01:00
Roger Clark 46760bee74
Merge pull request #508 from stevstrong/patch-16
F1 : Update Wire.cpp to remove BUS_RESET when I2C is enabled
2018-04-26 08:26:07 +10:00
stevstrong 1abb3f1ca5
Update Wire.cpp
bugfix hw I2C unrecognized addresses 0x76, 0x77
2018-04-25 23:22:17 +02:00
Victor Lamoine 6e4a80f106 Add simple SPI slave example 2018-04-23 19:28:39 +02:00
Roger Clark cb8b30bd6f add partial support for the new USB HID bootloader 2018-04-22 17:06:22 +10:00
Roger Clark 5664dbc7aa Add hold in bootloader using bkp register 10 2018-04-22 14:31:56 +10:00
Victor Lamoine 652569c079
Add simple SPI slave example 2018-04-20 19:01:32 +02:00
Victor Lamoine a3ae580d19
Add simple SPI slave example 2018-04-20 17:42:31 +02:00
Victor Lamoine 6e814ad5ca Add simple SPI slave example 2018-04-20 17:27:45 +02:00
Victor Lamoine 45b51dea12 Add simple SPI slave example 2018-04-20 14:38:57 +02:00
Roger Clark 4bb4ce913b Removed STM32F3 folder as it was only included as an archive, and is still available in the STM32F3 branch 2018-04-19 18:09:09 +10:00
Roger Clark 377e752365 Merge branch 'fpistm-shorten_path' 2018-04-19 18:05:44 +10:00
Roger Clark b2858b8c27 Merge branch 'shorten_path' of https://github.com/fpistm/Arduino_STM32 into fpistm-shorten_path 2018-04-19 17:46:35 +10:00
edogaldo b16686a06a Allow IRQ overriding 2018-04-17 11:19:36 +02:00
Roger Clark a5188b8cc3
Merge pull request #501 from stevstrong/patch-16
F4: update Print.cpp
2018-04-17 16:50:40 +10:00
stevstrong 84b1c8c1fe
F4: update Print.cpp
port from #486.
2018-04-17 08:28:51 +02:00
Roger Clark 6b7591b8b6
Merge pull request #499 from stevstrong/patch-13
Update BluePill-RTClock-test.ino
2018-04-14 09:49:36 +10:00