Max Lehuraux

Results 4 issues of Max Lehuraux

The WixVariable ID to add the EULA rtf has a typo, it should be `WixUILicenseRtf` and not WixUILicenseRTF` This results in having the default lorem ipsum text in the license...

In the `aducm3029_timer_init` function signature, the second parameter must be a const pointer to adhere to the `no_os_timer_platform_ops` struct `init` field signature: https://github.com/analogdevicesinc/no-OS/blob/4cb1ed065a517c0c33e728b1620b017783e67bb7/drivers/platform/aducm3029/aducm3029_timer.c#L111 https://github.com/analogdevicesinc/no-OS/blob/4cb1ed065a517c0c33e728b1620b017783e67bb7/drivers/platform/aducm3029/aducm3029_timer.c#L441 https://github.com/analogdevicesinc/no-OS/blob/4cb1ed065a517c0c33e728b1620b017783e67bb7/include/no_os_timer.h#L110 Here's the error from IAR:...

These two comparisons don't seem to do what's intended: https://github.com/analogdevicesinc/no-OS/blob/539d8d757eb8eba51d4baddcc817d625b4ecf9fe/drivers/adc/ad7124/ad7124.c#L1041 https://github.com/analogdevicesinc/no-OS/blob/539d8d757eb8eba51d4baddcc817d625b4ecf9fe/drivers/adc/ad7124/ad7124.c#L1044 I saw that when I compiled with IAR which gave me the following warnings: ```console if (!(dev->regs[AD7124_ID_REG].value = AD7124_4_ID))...