Brent K
Brent K
For certain IIO devices (such as the ADRV9002 in MIMO mode), the channel names of the devices are suffixed with _i and _q, while retaining the same channel number. The...
There looks to be discrepancies between different part datasheets as well as within code of what the values for GPIO drive strength represents. The PBU support team confirmed the MAX32672...
A recent porting project highlighted a potential deficiency in the SPI Rev A driver. The baseline project is heavily interrupt driven and utilized the SPI bus. At points in time,...
This was discovered with the MAX32690, but may apply to other devices. Per the user's guide, regarding the Watchdog timer, "The event flags are set even if the corresponding interrupt...
When attempting to build the BLE stack for RISC-V on the MAX32690 several Linker errors occur. Setting RISCV_CORE=0 resolves MXC_SEMA_ errors, however the linker can still not find MXC_LP_EnterSleepMode and...
This issue is found in RevB UART drivers at a minimum. Other revisions have not been checked. The MXC_UART_Write function uses the MXC_UART_WriteCharacterRaw function to transmit each character. - MXC_UART_WriteCharacterRaw...
Add the --print-memory-usage option to the linker arguments for a end-of-build breakdown of usage. ``` - LD /c/Workspace/MSDK_Development/brentk-adi-fork/Examples/MAX32650/CLCD_FreeRTOS/build/CLCD_FreeRTOS.elf Memory region Used Size Region Size %age Used ROM: 0 GB 64...
The UART drivers' 'states' variable was not statically limited in scope to their respective files. Aside from potentially corrupting data, since the name 'states' is fairly common, could cause conflict...
Add TinyUSB support into MSDK. TinyUSB was ported to the MAX32 devices and the PR is currently under review at the TinyUSB Repo ([PR 2708](https://github.com/hathach/tinyusb/pull/2708)). This PR is to bring...
The example projects for many of the peripherals (such as SPI, I2C, UART, etc) which leverage the mxc__req_t struct utilize a single main() to do all of the functionality whether...