CanastraRF

Results 9 issues of CanastraRF

In SimpleStringTest.cpp in TEST(SimpleString, findNormal) is the following code: LONG_EQUAL(0, str.find('H')); LONG_EQUAL(1, str.find('e')); LONG_EQUAL(SimpleString::npos, str.find('!')); But the return from SimpleString::find is size_t. size_t is under Visual Studio - 32-Bit build:...

I download STM32CubeL4 V1.17.0 In stm32l4xx_hal_opamp.h is in IS_OPAMP_POWERMODE() the legacy value OPAMP_POWERMODE_NORMAL used. ``` #define IS_OPAMP_POWERMODE(TRIMMING) (((TRIMMING) == OPAMP_POWERMODE_NORMAL) || \ ((TRIMMING) == OPAMP_POWERMODE_LOWPOWER) ) ``` But the current...

bug
internal bug tracker
hal

Hi In the newest version of `static HAL_StatusTypeDef CRYP_AESGCM_Process_IT(CRYP_HandleTypeDef * const hcryp) ` is a mask array ``` uint32_t mask[12U] = {0x0U, 0xFF000000UL, 0xFFFF0000UL, 0xFFFFFF00UL, /* 32-bit data type */...

bug
internal bug tracker
hal

Hi In the function `uint32_t HAL_RCC_GetSysClockFreq(void)` are two const array ``` uint8_t const aPLLMULFactorTable[16U] = { 2U, 3U, 4U, 5U, 6U, 7U, 8U, 9U, 10U, 11U, 12U, 13U, 14U, 15U,...

bug
internal bug tracker
hal

Hi In the function `uint32_t HAL_RCC_GetSysClockFreq(void) ` are five const array ``` #if defined(RCC_CFGR2_PREDIV1SRC) uint8_t const aPLLMULFactorTable[14U] = {0U, 0U, 4U, 5U, 6U, 7U, 8U, 9U, 0U, 0U, 0U, 0U,...

bug
internal bug tracker
hal

In the newest version of stm32f1xx_hal_adc_ex.c in function HAL_ADCEx_MultiModeStart_DMA() HAL_ADCEx_MultiModeStop_DMA() HAL_ADCEx_MultiModeConfigChannel() ADC_HandleTypeDef tmphadcSlave={0}; is added. This create a const in flash of ADC_HandleTypeDef and copy this to stack. A better...

internal bug tracker
hal

Hi In stm32f3xx_hal_rcc.c are two const array ``` uint8_t const aPLLMULFactorTable[16U] = { 2U, 3U, 4U, 5U, 6U, 7U, 8U, 9U, 10U, 11U, 12U, 13U, 14U, 15U, 16U, 16U}; uint8_t...

bug
internal bug tracker
hal

I use this tools since many years. Today I get en error at startup: Error: StartIndex darf nicht kleiner als Null sein. Parametername: startIndex After that now version is shown...

Hi most check for __ARM_FEATURE_CMSE are like this defined (__ARM_FEATURE_CMSE) && (__ARM_FEATURE_CMSE == 3U) but in some lines are only (__ARM_FEATURE_CMSE < 3U) so my tools reporting, that __ARM_FEATURE_CMSE can...

bug