| Age | Commit message (Collapse) | Author |
|
For normal mynewt packages newt tool wants to have specific
folder structure. It wants to have src and include directories,
and only include (and arch related) directory is added to compiler
include search list.
Since TinyUSB has different folder structure newt tool will not
add anything to -I directives and those would need to be
specified as pkg.cflags: "-I@tinyusb/src"
Recent change to newt tool allowed to add specific include directories
for external (sdk) packages so just including package will add
necessary -I to build commands.
This commit changes package type to sdk and specifies src as include
root for TinyUSB.
For older newt tool adding sdk and include_dirs does not break build.
|
|
Redesign of Synopsys device transmission
|
|
renaming function and variables
changing indent size
|
|
Fix SAMG
|
|
samg failed to run net example
|
|
|
|
|
|
|
|
|
|
fix dcd samd race condition with setup packet
|
|
setup packet can complete together with previous status (in & out).
Always make sure to prepare valid buffer for holding setup packet when
queuing control status.
|
|
|
|
Changes:
- checking if tx buffer empty interrupt is masked
- process more than one packet in isr
- mask tx buffer empty just after all bytes were written
- use of transmit_fifo_packet instead of transmit_packet
|
|
Follow 383
|
|
|
|
|
|
|
|
Fix endpoint busy flag race condition
|
|
synopsys turn off TX FIFO Empty for EPIN if all bytes are written
|
|
|
|
Busy flag was set to true after call to dcd_edpt_xfer().
In some cased it was possible that transfer finished before function
ended.
In this case busy flag could be set to false before it was set to
true.
Then setting it to true after dcd_edpt_xfer() made edpoint busy forever.
This change marks endpoint as busy before transfer is started to
avoid race condition.
|
|
|
|
|
|
|
|
|
|
fix dcd synopsys issue with usbnet #289
|
|
|
|
|
|
add usbd edpt open
|
|
|
|
- RTT mode is blocking to prevent log lost
- Improve logging message
|
|
synopsys: Reduce interrupt time for IN ZLP
|
|
For IN endpoints output FIFO is filled in interrupt, therefor before
endpoint is enabled, DIEPTSIZ is set with correct size of packet.
Then endpoint is enabled and FIFO empty interrupt is enabled.
This works fine except for the ZLP. Enabling FIFO empty interrupt
results in interrupt handler being called all the time because
there is nothing to put in the FIFO.
Eventually it ends when IN token is received and empty
packed is transmitted out.
This change does not enable FIFO empty interrupt for ZLP reducing
CPU load.
|
|
This reverts commit 1d33aa9b6f7940f9eac07ce684515856940175da, reversing
changes made to 718db7e5369df57b0f49a563737e6e0446fd4c4d.
|
|
Add dynamic configuration example
|
|
|
|
Added support for STM32F1 Connectivity Line MCU
|
|
|
|
|
|
STM32F105 and STM32F107 are using the Synopsys IP
|
|
|
|
added swo as logger
|
|
|
|
tested with feather nrf52840 + jlink
|
|
Add rtt as logger option
|
|
|
|
update example readme for debug log. Update bug template to ask for LOG
as well.
|
|
|
|
remove cmsis 5 from submodules
|
|
cmsis 5 use git lfs causing issue with submodule cloning and isn't used
yet. Could re-add later if needed.
|