f4grx
f4grx
Both devices I tested were FTDI FT232RL converters, and they do get assigned port numbers. If you detect ports via their internal device names it is possible that FTDI does...
I see this: full name USB Serial Port (COM10) class guid {4d36e978-e325-11ce-bfc1-08002be10318} bus type guid {00000000-0000-0000-0000-000000000000} container id {4d0f32ce-e418-5ec1-8147-cfbce55459d8} base container id {4d0f32ce-e418-5ec1-8147-cfbce55459d8}
Not here https://www.virustotal.com/#/file/e03c7bd02510731fb331bbccfecdabcf63fdfaef23435511c8a2829b2e762b4c/detection
It is not sufficient to clock SBWTCK. You would loose the 3-slot synchronization. Instead the internal JTAG TCLK signal is acquired during the TDI slot of the SBW protocol when...
Hello, I would like to use libopencm3 with a stm32g4, too. including development of USB-C power delivery. I can help with implementation and debugging. What can be done to accelerate...
I have done this in this pull request, I am waiting for the merge to upstream: https://github.com/emoncms/emoncms/pull/1639 With these changes I am able to connect to my broker that uses...
Remove the 3 instances of new/delete and this will make your light version for free. You're on a 8-bit micro, not a Xeon server...
Also each buffer uses 8 bytes, not 20. declaring a: uint8_t params[8] should be enough. Your bad code was copied all over the web, see here: https://github.com/NT7S/Si5351/blob/master/si5351.c Also you can...
okay, now my feet hurts. hyperbole apart, dynamic allocation probably triggers the linking of a set of functions to implement malloc and free, which probably also has a significant flash...
My initial remarks were about RAM savings. some buffers allocated dynamically are clearly unneededly big, and could be allocated once and for all as a global/class variable. Glad you could...