-
-
Notifications
You must be signed in to change notification settings - Fork 284
Comparing changes
Open a pull request
base repository: arduino/ArduinoCore-arc32
base: 2.0.2
head repository: arduino/ArduinoCore-arc32
compare: master
Commits on Apr 4, 2017
-
Change SRAM mapping and increase SRAM allocated to ARC core
-increase SRAM to 40K -change SRAM start address -increase heap size to 16K -this change is needed for BLE scan for SensorTag
Configuration menu - View commit details
-
Copy full SHA for 562cd84 - Browse repository at this point
Copy the full SHA 562cd84View commit details -
Fix Jira 864 After BLE.end() a peripheral is still showing up in scans
1. Stop scan, advertising and disconnect the connected devices when call end Changed files BLEDeviceManager.cpp - do the real action BLEDevice.cpp - only local BLE device call the real end
Configuration menu - View commit details
-
Copy full SHA for 1785ffc - Browse repository at this point
Copy the full SHA 1785ffcView commit details
Commits on Apr 12, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 6d37b45 - Browse repository at this point
Copy the full SHA 6d37b45View commit details
Commits on Apr 21, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 0ebbf9e - Browse repository at this point
Copy the full SHA 0ebbf9eView commit details -
Configuration menu - View commit details
-
Copy full SHA for faac761 - Browse repository at this point
Copy the full SHA faac761View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8aabac9 - Browse repository at this point
Copy the full SHA 8aabac9View commit details
Commits on May 9, 2017
-
stdlib_noniso.cpp: fix another rounding error in dtostrf
Rounding up the passed float/double to the specified presicion must be the *very first* thing we do, before doing anything else with that value (In this case, the issue was cause by digitsBe4Decimal() returning an incorrect value, because it was being called before passed value was rounded up)
Configuration menu - View commit details
-
Copy full SHA for 3f61b65 - Browse repository at this point
Copy the full SHA 3f61b65View commit details
Commits on May 12, 2017
-
stdlib_noniso.cpp: dtostrf(), subtract rounding if number is negative
If we are working with a negative number, then *adding* the rounding onto the number has the opposite to the intended effect. Need to check if the number is negative, and if so, subtract the rounding instead of adding. It may appear that a cleaner solution to this is to simply move the "handle negative numbers" block (starting on what is now line 222) before the "round up to the precision" block (starting on what is now line 202). However, I don't think this will work without a substantial re-design of this function, for the following reasons; Any leading padding must be added before handling a negative number (adding the '-' char. to output, and then flipping the number's sign for calculations). And in order to add the right amount of padding, we must run digitsBe4Decimal first, and in order to guarantee an accurate result from *that*, the rounding-up must have been done. So there's a fairly rigid order here. Oh, and I also removed the 'goto end', and the label, since an if() work just as well. Can't remember why I even added that in the first place.
Configuration menu - View commit details
-
Copy full SHA for 50f30b3 - Browse repository at this point
Copy the full SHA 50f30b3View commit details
Commits on May 18, 2017
-
Add IPM (Inter-Processor-Mailbox) driver to cores/arduino
This allows the mailbox to be used for Serial (instead of polling shared memory). The CurieMailbox library, in the codk-m-corelibs branch, will not require any API changes, but will now just be a thin wrapper around the methods in mailbox.cpp
Configuration menu - View commit details
-
Copy full SHA for 936a638 - Browse repository at this point
Copy the full SHA 936a638View commit details
Commits on Aug 3, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 6d3c39d - Browse repository at this point
Copy the full SHA 6d3c39dView commit details -
-set pinMode for RX and TX pins inside of begin instead of the constructor
Configuration menu - View commit details
-
Copy full SHA for c794c47 - Browse repository at this point
Copy the full SHA c794c47View commit details
Commits on Aug 8, 2017
-
Move CuriePowerMangement library as part of cores
-move the Power Management library from https://github.com/bigdinotech/Arduino101Power
Configuration menu - View commit details
-
Copy full SHA for be920e7 - Browse repository at this point
Copy the full SHA be920e7View commit details
Commits on Aug 16, 2017
-
-use the IPM instead of shared memory for passing data between ARC and x86 cores for cdc-acm.
Configuration menu - View commit details
-
Copy full SHA for 7bc16b6 - Browse repository at this point
Copy the full SHA 7bc16b6View commit details
Commits on Aug 17, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 28876f0 - Browse repository at this point
Copy the full SHA 28876f0View commit details
Commits on Aug 18, 2017
-
Configuration menu - View commit details
-
Copy full SHA for c76b2ac - Browse repository at this point
Copy the full SHA c76b2acView commit details
Commits on Sep 5, 2017
-
Use correct separator in keywords.txt
The Arduino IDE requires the use of a tab separator between the name and identifier. Without this tab the keyword is not highlighted. Reference: https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specification#keywords
Configuration menu - View commit details
-
Copy full SHA for 2227ce1 - Browse repository at this point
Copy the full SHA 2227ce1View commit details
Commits on Oct 26, 2017
-
Set a baud rate limit for cdc-acm internally
-set a baud rate limit for cdc-acm due to the limitation of Inter Processor Mailbox
Configuration menu - View commit details
-
Copy full SHA for 00f50b3 - Browse repository at this point
Copy the full SHA 00f50b3View commit details
Commits on May 30, 2018
-
Replace boolean type with bool in examples
This is part of a move to encourage use of the standard bool type over Arduino's non-standard boolean type alias.
Configuration menu - View commit details
-
Copy full SHA for 0482f6b - Browse repository at this point
Copy the full SHA 0482f6bView commit details
Commits on Mar 26, 2019
-
Add necessary delays to SPI DigitalPotControl example
According to arduino/Arduino#6395, these delays are required for the SPI communication with the digital potentiometer to work.
Configuration menu - View commit details
-
Copy full SHA for 2729d38 - Browse repository at this point
Copy the full SHA 2729d38View commit details
Commits on May 7, 2019
-
Merge pull request #585 from per1234/boolean-bool
Replace boolean type with bool in examples
Configuration menu - View commit details
-
Copy full SHA for 09026ef - Browse repository at this point
Copy the full SHA 09026efView commit details -
Merge pull request #595 from per1234/digitalpotcontrol-delays
Add necessary delays to SPI DigitalPotControl example
Configuration menu - View commit details
-
Copy full SHA for 9f2e5e1 - Browse repository at this point
Copy the full SHA 9f2e5e1View commit details
There are no files selected for viewing