Search found 384 matches

by FXCoder
Sun Mar 26, 2023 11:38 am
Forum: ChibiOS/HAL
Topic: STM32F4 I2Cv1 doesn't see the aknowledge
Replies: 9
Views: 1654

Re: STM32F4 I2Cv1 doesn't see the aknowledge

Hi,
Is the I2C config something like this?

Code: Select all

const I2CConfig _i2cMainCfg = {
    OPMODE_I2C,
    50000,
    STD_DUTY_CYCLE,
};


I know this configuration works on F413 with BME280 configured for I2C use.
(Should be using dot notation for member access but this is old code).

--
Bob
by FXCoder
Thu Mar 23, 2023 1:54 pm
Forum: ChibiOS/RT
Topic: Idle thread stats handling changed in 21.11?
Replies: 7
Views: 4121

Re: Idle thread stats handling changed in 21.11?

Hi Steve,
How are things?

Yeah... chprintf and 64 bit are not good friends.

Cheers
--
Bob
by FXCoder
Wed Mar 01, 2023 1:56 am
Forum: STM32 Support
Topic: STM32WB55
Replies: 3
Views: 1246

Re: STM32WB55

Hi KR,
Supporting the WB to work with the proprietary ST stacks on CPU2 is non-trivial.
Nobody has had the time (or need) to do more.
You can look at the STM32CubeWB to get an idea of the requirements if you want to write drivers independently.
https://github.com/STMicroelectronics/STM32CubeWB

--
Bob
by FXCoder
Thu Feb 23, 2023 12:03 am
Forum: STM32 Support
Topic: STM32WB55
Replies: 3
Views: 1246

Re: STM32WB55

Hi,
Only the main core is supported (these is no IPCC, HSEM, CPU2 control, etc.).

--
Bob
by FXCoder
Thu Jan 26, 2023 3:52 am
Forum: Bug Reports
Topic: RP watchdog bug Topic is solved
Replies: 8
Views: 1703

Re: RP watchdog bug Topic is solved

Trunk now updated.
This report can be closed.
by FXCoder
Sun Jan 22, 2023 10:41 am
Forum: Bug Reports
Topic: RP watchdog bug Topic is solved
Replies: 8
Views: 1703

Re: RP watchdog bug Topic is solved

Thanks for working on this.
I will find my RP2040s and set up for test soon.
In the mean time here is an updated driver.

--
Bob
by FXCoder
Mon Jan 16, 2023 2:45 pm
Forum: Bug Reports
Topic: RP watchdog bug Topic is solved
Replies: 8
Views: 1703

Re: RP watchdog bug Topic is solved

Here you go...
It will turn up on the GIT mirror also (whenever it syncs)

Also note there is now a patch submission site which can be found at…
https://review.chibios.org
by FXCoder
Mon Jan 16, 2023 2:18 pm
Forum: Bug Reports
Topic: RP watchdog bug Topic is solved
Replies: 8
Views: 1703

Re: RP watchdog bug Topic is solved

Hi,
Thanks for the report.
Slightly different fix now applied to trunk on SF.
Please give it a test (don't have a Pico board handy at the moment).

--
Bob
by FXCoder
Fri Dec 09, 2022 10:49 am
Forum: Bug Reports
Topic: Shell: When shellGetLine fails the last line cmd is executed again Topic is solved
Replies: 3
Views: 1063

Re: Shell: When shellGetLine fails the last line cmd is executed again Topic is solved

In my modified version of shell.c i have this... #else /* Putting a delay in order to avoid an endless loop trying to read an unavailable stream.*/ osalThreadSleepMilliseconds(100); #endif } if (*line == 0) continue; lp = parse_arguments(line, &tokp); And at the end of ShellGetLine(...) this... ...
by FXCoder
Tue Oct 18, 2022 2:43 am
Forum: STM32 Support
Topic: STM32G071 ADC Start
Replies: 11
Views: 1998

Re: STM32G071 ADC Start

Just OR the >> 20 result with 1 before left shift 4?

Go to advanced search