Re: [PATCH v5 1/3] hw/misc: Implement STM32L4x5 EXTI

2024-01-04 Thread inesvarhol
Le jeudi 4 janvier 2024 à 14:40, Philippe Mathieu-Daudé a écrit : > If you don't have access to similar compiler, you can fork on GitLab > and push a branch to trigger the CI; I expect it to fail. Thanks for the tip ! Ines Varhol

Re: [PATCH v5 1/3] hw/misc: Implement STM32L4x5 EXTI

2024-01-04 Thread Samuel Tardieu
On 04/01/2024 14:40, Philippe Mathieu-Daudé wrote: On 4/1/24 14:23, Samuel Tardieu wrote: Philippe Mathieu-Daudé writes: This doesn't build: ../../hw/misc/stm32l4x5_exti.c:172:9: error: expected expression     const uint32_t set1 = value & ~DIRECT_LINE_MASK1; […] I could build using: -

Re: [PATCH v5 1/3] hw/misc: Implement STM32L4x5 EXTI

2024-01-04 Thread Philippe Mathieu-Daudé
On 4/1/24 14:23, Samuel Tardieu wrote: Philippe Mathieu-Daudé writes: This doesn't build: ../../hw/misc/stm32l4x5_exti.c:172:9: error: expected expression     const uint32_t set1 = value & ~DIRECT_LINE_MASK1; […] I could build using: -    case EXTI_SWIER1: +    case EXTI_SWIER1: { Out

Re: [PATCH v5 1/3] hw/misc: Implement STM32L4x5 EXTI

2024-01-04 Thread Samuel Tardieu
Philippe Mathieu-Daudé writes: This doesn't build: ../../hw/misc/stm32l4x5_exti.c:172:9: error: expected expression const uint32_t set1 = value & ~DIRECT_LINE_MASK1; […] I could build using: -case EXTI_SWIER1: +case EXTI_SWIER1: { Out or curiosity, which C compiler or optio

Re: [PATCH v5 1/3] hw/misc: Implement STM32L4x5 EXTI

2024-01-04 Thread Philippe Mathieu-Daudé
On 28/12/23 17:19, Inès Varhol wrote: Although very similar to the STM32F4xx EXTI, STM32L4x5 EXTI generates more than 32 event/interrupt requests and thus uses more registers than STM32F4xx EXTI which generates 23 event/interrupt requests. Signed-off-by: Arnaud Minier Signed-off-by: Inès Varhol

[PATCH v5 1/3] hw/misc: Implement STM32L4x5 EXTI

2023-12-28 Thread Inès Varhol
Although very similar to the STM32F4xx EXTI, STM32L4x5 EXTI generates more than 32 event/interrupt requests and thus uses more registers than STM32F4xx EXTI which generates 23 event/interrupt requests. Signed-off-by: Arnaud Minier Signed-off-by: Inès Varhol --- docs/system/arm/b-l475e-iot01a.rs