Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-08-26 | Device driver/mouse: use correct endpoint type: INTERRUPT | Amir Hammad | 1 | -1/+1 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-07-29 | hub: Empty packet readings after SET_ and CLEAR_ commands | Amir Hammad | 2 | -9/+25 | |
* fixed typo/bug: "hub->state += 2" must have been "hub->state = 2" to issue empty read Now, after each SET_ or CLEAR_ command, empty read is issued. + removed forward declaration of event() - cleaning Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-07-13 | gp_xbox: Do not allow unitialized driver to be loaded | Amir Hammad | 1 | -2/+2 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-07-13 | mouse: Do not allow unitialized driver to be loaded | Amir Hammad | 1 | -1/+9 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-07-13 | hub: Do not allow unitialized driver to be loaded | Amir Hammad | 1 | -1/+8 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-07-13 | Global logging: use \n for a new line instead \r\n in LOG_PRINTF | Amir Hammad | 7 | -66/+66 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-07-13 | usbh_hubbed: When in unknown state, print Error | Amir Hammad | 1 | -0/+4 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-07-13 | usbh_hubbed: cleaning newlines after break; in switch | Amir Hammad | 1 | -0/+2 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-07-13 | hub: Fix forgotten break | Amir Hammad | 1 | -0/+5 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-15 | demo: timer: BUGFIX: TIM6 prescaler | Amir Hammad | 1 | -1/+1 | |
TIM6 has clock running at 84MHz instead of 168MHz, so set the prescaler accordingly. Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-08 | Device drivers: Refactor: Remove prefixes of static functions and variables | Amir Hammad | 3 | -31/+31 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-08 | Device drivers: Refactor: Move driver declaration to the end of file | Amir Hammad | 3 | -72/+57 | |
forward declarations are not needed Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-08 | lld: stm32f4: refactor: Remove prefixes of static functions and variables | Amir Hammad | 1 | -19/+19 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-08 | lld: stm32f4: Move driver definitions to the end of file | Amir Hammad | 1 | -47/+38 | |
This way, we don't need forward declarations Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-07 | usbh_hubbed: device_register: Don't check for USB_DT_DEVICE twice | Amir Hammad | 1 | -9/+0 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-06 | LLD: stm32f4: change type of i to signed integer | Amir Hammad | 1 | -2/+3 | |
this was causing infinite loop, when size of the data was not multiple of 4. Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-06 | Refactor device drivers: don't use automatic casts | Amir Hammad | 3 | -16/+16 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-05 | usbh_hubbed: reorder items in _usbh_dev_driver struct | Amir Hammad | 1 | -1/+1 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-05 | use stdbool.h to define bool type | Amir Hammad | 1 | -7/+1 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-05 | Device driver/hid_mouse: Bugfix enum STATES | Amir Hammad | 1 | -2/+2 | |
fixing after enum STATES refactor. Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-01 | demo: More precise timing, using TIM6 | Amir Hammad | 1 | -6/+38 | |
Overflows in 6.5536 seconds Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-01 | poll(): refactor every poll argument t_us and tflp -> time_curr_us | Amir Hammad | 6 | -20/+30 | |
added comment to usbh_hubbed.h Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-01 | lld: stm32f4: poll(): fix return value | Amir Hammad | 1 | -3/+3 | |
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-01 | demo: rcc_peripheral_enable_clock->rcc_periph_clock_enable | Amir Hammad | 1 | -7/+7 | |
Instead of 2 argument call, use function with one argument. It is more clear, and safer for inexperienced users with libopencm3. Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> | |||||
2015-04-01 | libusbhost: Open source USB host stack for embedded devices | Amir Hammad | 29 | -0/+5592 | |
First public version, date: 1.4.2015 Signed-off-by: Amir Hammad <amir.hammad@hotmail.com> |