mbenkmann
mbenkmann
Right now, the only way to enable cgo is to modify the source of gogetdoc. Please add a command line flag for it. cgo_enabled is necessary to get docs for...
Unless I'm missing something there does not seem to be any way to obtain a CommonEvent from an Event without using direct pointer conversion with package "unsafe". Some way should...
Addendum 2022-02-11: There seem to be more situations that cause i2cdriver to lock up unrelated to the scan command. Whenever I reprogram my Teensy (which includes the device resetting, causing...
In capture mode I'm seeing a 0x1 START byte only for the very 1st transfer after initiating capture mode as well as repeated START conditions. Other 0x1 START bytes are...
I was using the i2cdriver while developing i2c handling code for a microcontroller and it would have been very useful if the i2cdriver didn't just display correctly decoded transfers but...
Personally I don't find the heatmap useful. I would like to have a mode or alternate firmware that uses the whole display to show transaction data. Every S condition would...
KEY_RECORD is a multi-media keyboard key that starts audio recording. This is not the meaning of the Share button. Having the Share button report KEY_RECORD has side-effects: - software gets...
It is better for a function to not simply disable and enable interrupts, so the following pattern is generally better: int enabled = __irq_enabled(); __disable_irq(); ... if (enabled) __enable_irq(); To...
DMAChannel.h: In copy constructor 'DMASetting::DMASetting(const DMASetting&)': DMAChannel.h:405:11: warning: implicitly-declared 'constexpr DMASetting& DMASetting::operator=(const DMASetting&)' is deprecated [-Wdeprecated-copy] 405 | *this = c; | ^ DMAChannel.h:403:2: note: because 'DMASetting' has user-provided 'DMASetting::DMASetting(const...
Currently the go-susi instance on the server needs a clear text password for LDAP write access in its config file. For read access an optional clear text password can be...