Kuldeep Singh Dhaka
Kuldeep Singh Dhaka
problem is: user has to go back and select sensor to start a new plot. user has to stop plotting in order to zoom in/out. providing a start/stop button should...
Hello @VincentGijsen Something like this: ``` static uint8_t my_alt_setting; static const struct usb_interface ifaces[] = {{ .num_altsetting = 2, .cur_altsetting = &my_alt_setting, .altsetting=ifaces_collection /* Pointer to an array of iface...
Tip: Usually BULK endpoint containing interface is usually the alternate-setting 0 instead of 1 because BULK endpoint do not require allocation of any bandwidth but INTERRUPT interface require allocation of...
Is anyone even going to respond?
Are you trying to fix a [single] compiler specific bug in the library?
@alexrayne All uC that have this periph have support for unaligned memory access. What is the point of optimization? imo If you write a comment noting the above assumption (unaligned...
Note to myself: * Need to look into the MSC new code. (what it does and is it implementing correctly) * the logging code is being push with MSC code,...
- VBUS value reading (your current code look ok) - various session callback {connected, suspended, resumed, disconnected}. on suspend, disconnected, the USB periph can go into a state that can...
Yes, there are no connected/disconnected callback. (dont exists), they need to be implemented. I think, we should do things transparently for user till they make sense (ie don't get in...
What are the possible usecases of manually controlling power down of usb periph? The stack can provide an abstraction over power down mode via session management {connected, disconnected, suspended, resumed}....