Commit Graph

1281 Commits

Author SHA1 Message Date
Reilly Grant 78700c6556 Fix links to 3rd party hardware specification.
The number of hyphens in this URL has apparently changed.
2015-07-31 15:54:22 -07:00
Martino Facchin 99a27d0bd8 rework HID-based libraries and add Due fallback 2015-07-16 13:13:53 +02:00
Martino Facchin 3d61f6e37e allow HID submodules to create runtime descriptors
with this PR you can add

\#include Keyboard.h
\#include Mouse.h
\#include HID.h

in the top of the sketch and you will expose a Mouse+Keyboard

From the library pow, simply add

static HID_Descriptor cb = {
	.length = sizeof(_hidReportDescriptor),
	.descriptor = _hidReportDescriptor,
};
static HIDDescriptorListNode node(&cb);
HID.AppendDescriptor(&node);

in the class' constructor and you are done!
2015-07-16 13:13:52 +02:00
Martino Facchin b0bdb47694 fix pluggableUSB linked list 2015-07-16 13:13:52 +02:00
Martino Facchin 862febf3e2 save RAM content overridden by bootloader magic
and restore it in case of aborted reboot
use RAMEND-1 as suggested by @yyyc514 in PR #2474

of course it's not a real solution but we cannot force everyone to update the bootloader using an external programmer
2015-07-16 13:13:52 +02:00
Martino Facchin 47efb352c9 rework HID class functions scopes 2015-07-16 13:13:52 +02:00
Martino Facchin 3cf30dff25 rename Setup typedef struct to USBSetup
was really too common
2015-07-16 13:13:52 +02:00
Martino Facchin 3d0331b8f6 fix HID headers 2015-07-16 13:13:51 +02:00
Martino Facchin 30ebf7f924 fix HID descriptors bigger than 127 bytes 2015-07-16 13:13:51 +02:00
Martino Facchin 3ee0fa1265 Add support for waking up a host via USB HID
this is a rework of commit fbcf94801b8bba7f1c8c79cc7ae402b6b9dbb2d3
2015-07-16 13:13:51 +02:00
Martino Facchin f367bcca2c move HID library to AVR specific location 2015-07-16 13:13:51 +02:00
Martino Facchin adb351882c remove setupUSB weak hook and replace with global constructors
thanks @matthijskooijman
2015-07-16 13:13:49 +02:00
Martino Facchin d269ed2854 rework PUSBCallbacks initialization 2015-07-16 13:13:39 +02:00
Martino Facchin 3e516e93c4 remove 3 endpoints to match at32u4 limit 2015-07-16 13:12:15 +02:00
Martino Facchin 8fbc30bd8a add numInterfaces field to PUSBCallbacks 2015-07-16 13:12:15 +02:00
Martino Facchin b38d7f07f0 implement PUSB modules as linked list 2015-07-16 13:12:14 +02:00
Martino Facchin 353ef39c23 remove useless variables 2015-07-16 13:12:14 +02:00
Martino Facchin a1ba49e7c8 make CDC function non removable 2015-07-16 13:12:14 +02:00
Martino Facchin afd126f96a add weak setupUSB() hook
override this function to insert additional USB endpoints
2015-07-16 13:12:14 +02:00
Martino Facchin 15edf1c6c8 remove useless variable 2015-07-16 13:12:14 +02:00
Martino Facchin d3815e7e36 add PluggableUSB module 2015-07-16 13:12:14 +02:00
Martino Facchin 8518b4a545 move _initEndpoints from PROGMEM to RAM 2015-07-16 13:12:14 +02:00
Martino Facchin f71f63a644 Use generic composite device descriptor 2015-07-16 13:12:13 +02:00
Martino Facchin f1973e73cb Move EP defines to header 2015-07-16 13:12:13 +02:00
Martino Facchin ea2a421570 Remove HID core library 2015-07-16 13:12:13 +02:00
Matthijs Kooijman e798ff32b7 Enable C11 support
This uses the gnu11 standard, which is C11 with GNU extensions.
Previously, gnu89 was being used, which is pretty ancient by now. C99
brings some important improvements, some of which were already available
and used even without this option. C11 is more recent and brings more
minor improvements. Most notable feature is the static_assert statement,
allowing checking invariants at compiletime using the full C
expressions.
2015-07-16 13:06:10 +02:00
Matthijs Kooijman 72a5ef3c78 Check for __cplusplus >= 201103L as well as __GXX_EXPERIMENTAL_CXX0X__
Gcc 4.8 defines __cplusplus as 201103L, so we can check for that now. It
still also defines __GXX_EXPERIMENTAL_CXX0X__, but this could help on
other compilers, or if gcc ever decides to stop defining the
experimental macro.
2015-07-16 13:06:10 +02:00
Matthijs Kooijman c84ff4d177 Enable C++11 support
This uses the gnu++11 standard, which is C++11 with GNU extensions.
C++11 should be full compatible with the previously used C++98
standards, so all pre-existing sketches should continue to work.
2015-07-16 13:06:09 +02:00
Matthijs Kooijman 7ec354959a Explicitely specify C and C++ standards to use
This does not change anything, it just makes the defaults explicit.
2015-07-16 13:06:09 +02:00
Martyn Ranyard 83fab13436 Bootloaders: wrong #ifdefs, should be defined() not just tested (i.e. noteq 0)
Close #126
2015-07-14 16:16:31 +02:00
Martyn Ranyard d76d58a12e Bootloaders: adds support for 328-nonp chips 2015-07-14 12:55:22 +02:00
Martyn Ranyard 10da8ab42f -O2 in new avr-gcc makes too big a bootloader to fit on 328(and 328p) 2015-07-14 12:37:36 +02:00
Martyn Ranyard 8416a2c0ca Fixed EEPE flag check.
Here, using the flag itself makes the bootloader build where it currently does not for the 328 amongst others
2015-07-14 12:28:13 +02:00
Federico Fissore 25e642084a Yun bootloader without blink 2015-07-07 17:15:42 +02:00
Federico Fissore b5a130afb5 Examples: mass code format. See example_formatter.conf 2015-07-06 15:19:05 +02:00
Matthew Lowe c13cf02651 Support for repeated starts added to SAM Wire library
Additional interface method ported to avr for compatibility
Fix issue #2428.
2015-07-03 16:59:30 +02:00
Federico Fissore 37c29845f6 Removed a handful of SVN expansion keywords. See #277 2015-07-03 10:38:07 +02:00
Martino Facchin 462fff36fd Merge pull request #1869 from kevin-pololu/due-wire-available
SAM Wire: fixed NACK/timeout behavior of requestFrom() and available()
2015-07-01 12:43:44 +00:00
Federico Fissore b86815ef7c Fixed missing "sketch" folders in some paths of both AVR and SAM cores 2015-06-29 16:10:54 +02:00
Federico Fissore c702cdc71b Compiler: sketch files get compiled into "sketch" 2015-06-29 15:11:45 +02:00
Federico Fissore 92bedd86b8 Compiler: cores files get compiled under "core", libraries under "libraries". Fixes #2997 2015-06-29 15:11:45 +02:00
Matthijs Kooijman 695d48cc79 Warn about increasing HardwareSerial buffers to > 256
Properly supporting bigger buffers need better atomicity code, which
isn't implemented yet. Until it is, best to add a warning. See #2405.
2015-06-18 16:36:07 +02:00
Matthijs Kooijman a0f53f531f Support the Atmel STK500 development board for ISP 2015-06-05 18:43:25 +02:00
ziotibia81 c15207d9bc Added comment about Bus Pirate 2015-06-05 18:43:23 +02:00
ziotibia81 3f03d7040e Added support for Dangerous Prototypes Bus Pirate as ISP
Close #2385
2015-06-05 18:43:12 +02:00
Fede85 e58a318bb3 add Arduino Gemma Bootloader source files 2015-06-01 20:00:54 +02:00
Martino Facchin 17b840d27f Add a Stream::find(char) method 2015-06-01 14:06:32 +00:00
Cristian Maglie 6c763b7df3 Fixed unused argument warning 2015-05-30 15:19:44 +02:00
Cristian Maglie 64dd45c3ce Fixed unused variables warnings and indentation 2015-05-29 20:02:50 +02:00
chromhelm b7855ab7e1 Saving some bytes in HardwareSerial::write 2015-05-29 18:12:24 +02:00