aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src
Commit message (Collapse)AuthorAgeFilesLines
* USBH: MSD: revert report OK on CSW status failureDiego Ismirlian2019-10-021-2/+0
|
* USBH: UVC: improve debug messageDiego Ismirlian2019-10-021-2/+7
|
* USBH: rework debug frameworkDiego Ismirlian2019-10-028-1001/+473
|
* USBH: check remaining bytes before dereferencing bufferDiego Ismirlian2019-10-021-7/+7
| | | | To avoid accessing unimplemented memory. We rely on the lazy evaluation of the C language.
* Update copyrightDiego Ismirlian2019-09-299-9/+9
|
* Merge branch 'master' of https://github.com/ChibiOS/ChibiOS-ContribDiego Ismirlian2019-09-291-1/+3
|\
| * Fixes for STM32L4, Comp and eeprom.Fabien Poussin2019-09-181-1/+3
| |
* | Merge branch 'master' of https://github.com/ChibiOS/ChibiOS-ContribDiego Ismirlian2019-08-247-6/+187
|\|
| * Fixes for USB MSDJosé Simões2019-02-271-0/+2
| | | | | | | | | | | | | | | | | | - Fix return value on succesfull scsi_requestsense. - Fix calls to LL SMT32 API for OTG2. - Port changes from ChibiOS fatfs_diskio. - Rework checks to allow simultaneous use of SD Card and USB MSD. Signed-off-by: José Simões <jose.simoes@eclo.solutions>
| * Updating OpAmp code with calibration functions, cleaning.Fabien Poussin2019-01-311-6/+6
| |
| * Adding rudimentary OPAMP DriverFabien Poussin2019-01-081-0/+155
| |
| * Fix USB HID driver.Konstantin Oblaukhov2018-11-201-1/+9
| |
| * Adopt sources to new HAL.Konstantin Oblaukhov2018-09-245-2/+23
| |
* | Merge branch 'master' of https://github.com/MegabytePhreak/ChibiOS-ContribDiego Ismirlian2018-08-203-2/+8
|\ \
| * | Fix incompatible USBH VMTsPaul Roukema2018-08-053-2/+8
| |/
* | Merge branch 'master' of https://github.com/ChibiOS/ChibiOS-ContribDiego Ismirlian2018-08-205-37/+35
|\|
| * Fixes for #138Fabien Poussin2018-03-202-26/+24
| |
| * Merge branch 'master' into update_testsFabien Poussin2018-03-151-1/+1
| |\
| | * Fixed most testhal examples for STM32, updated configs using script. Fixed ↵Fabien Poussin2018-03-144-11/+11
| | | | | | | | | | | | deprecated MS2ST calls.
| * | hal_usbh: update to new Time macrosRomain Reignier2018-03-123-10/+10
| |/
* | USBH: debug improvementsDiego Ismirlian2017-12-041-2/+21
| |
* | USBH: AOA: Various improvementsDiego Ismirlian2017-11-191-9/+22
| |
* | USBH: improve disconnection detection; added a necessary reschedule.Diego Ismirlian2017-11-191-3/+2
| |
* | Merge branch 'master' of https://github.com/ChibiOS/ChibiOS-ContribDiego Ismirlian2017-10-291-1/+21
|\|
| * SCSI: Respond to unit serial number inquiryKimmo Lindholm2017-10-121-1/+21
| |
* | USBH: main driver: implement usbhBulkTransfer as inline functionDiego Ismirlian2017-10-291-10/+0
| |
* | usbh:correct spelling of usbhSynchronousTransferMark Harris2017-09-141-2/+2
| |
* | usbh:_ptxfe_int, use HPTXSTS, introduce usbhSyncrhonousTransferMark Harris2017-09-141-1/+10
| |
* | implement ptxfe_int for outbound INT epMark Harris2017-09-121-1/+1
|/
* USBH: FTDI: correct bugsDiego Ismirlian2017-08-071-3/+3
|
* USBH: simplify/cleanup main driverDiego Ismirlian2017-08-071-44/+10
|
* USBH: improved debug outputDiego Ismirlian2017-07-312-19/+55
|
* USBH: improved main driverDiego Ismirlian2017-07-311-47/+58
| | | | | | | - improved connection/disconnection handling - corrected bug on aborting non-pending URB - corrected bug on disconnecting multiple hubs - improved debug messages
* USBH: replaced some ch* functions with OSAL equivalentsDiego Ismirlian2017-07-162-48/+48
|
* USBH: remove unnecessary reschedules and add necessary onesDiego Ismirlian2017-07-167-28/+17
|
* USBH: Use infinite timeout for control request, when timeouts are not specifiedDiego Ismirlian2017-07-161-1/+1
|
* USBH: HID: Implement synchronizationDiego Ismirlian2017-07-162-14/+32
|
* USBH: HUB: don't clear status flags on NAKDiego Ismirlian2017-07-161-4/+2
|
* USBH: MSD: improved syncrhonizationDiego Ismirlian2017-07-161-12/+7
|
* USBH: Use configured UART for debug; avoid garbage debug outputDiego Ismirlian2017-07-161-34/+39
|
* USBH: Added TODO listDiego Ismirlian2017-07-141-0/+14
|
* USBH: MSD: replace mutex with semaphores (more lightweight)Diego Ismirlian2017-07-141-48/+32
|
* USBH: HID: corrected interrupt IN request lengthDiego Ismirlian2017-07-141-1/+4
|
* USBH: Add flexibility to the enumeration processDiego Ismirlian2017-07-137-133/+131
|
* USBH: cleanupDiego Ismirlian2017-07-133-11/+20
|
* USBH: moved usbh/desciter.h and usbh/debug.h to usbh/internal.hDiego Ismirlian2017-07-093-7/+1
|
* USBH: Added mechanism for out-of-tree class driver enumerationDiego Ismirlian2017-07-097-71/+79
|
* USBH: moved definition of driver to LLDDiego Ismirlian2017-07-091-8/+0
|
* USBH: MSD: Rework to prevent race conditions on unloadDiego Ismirlian2017-07-041-84/+43
|
* USBH: UVC, fix compile with IARDiego Ismirlian2017-06-081-10/+16
|