Search found 14459 matches

by Giovanni
Wed Dec 06, 2023 6:44 am
Forum: ChibiStudio
Topic: Assessment of the difficulty in porting CPU architecture for ChibiOS
Replies: 3
Views: 3644

Re: Assessment of the difficulty in porting CPU architecture for ChibiOS

Hi,

Not sure what your question is, anyway, the RISC-V port complexity is not high, pretty average.

Giovanni
by Giovanni
Wed Dec 06, 2023 6:40 am
Forum: General Support
Topic: RA8M1 480MHz Arm® Cortex®-M85 Microcontroller
Replies: 3
Views: 2046

Re: RA8M1 480MHz Arm® Cortex®-M85 Microcontroller

Hi,

Not difficult but time consuming. It is a new device and requires all the HAL support infrastructure (clocks, shared drivers, gpio, code generators) and all new peripheral drivers.

A good start would be the vendor providing good CMSIS headers.

Giovanni
by Giovanni
Mon Dec 04, 2023 1:02 pm
Forum: General Support
Topic: RA8M1 480MHz Arm® Cortex®-M85 Microcontroller
Replies: 3
Views: 2046

Re: RA8M1 480MHz Arm® Cortex®-M85 Microcontroller

Hi,

M85 would be no problem, it could be ported.

Giovanni
by Giovanni
Mon Dec 04, 2023 9:47 am
Forum: General Support
Topic: Is there any plan for AT32 chip support?
Replies: 1
Views: 1121

Re: Is there any plan for AT32 chip support?

Hi,

Personally I have no plans, existing ports already take all by bandwidth.

About porting, there are driver template files to be filled and you could use existing ports as an organization reference.

There is also the option of hiring developers for doing the port for you.

Giovanni
by Giovanni
Fri Nov 24, 2023 6:37 am
Forum: General Support
Topic: Differences in scheduling in POSIX Simulator
Replies: 1
Views: 1213

Re: Differences in scheduling in POSIX Simulator

Hi,

The only difference regarding scheduling is preemption. You need to manually insert a call to the simulator port in points where you want to check for preemption (looking for pending interrupts basically).

Code: Select all

#if defined(SIMULATOR)
      _sim_check_for_interrupts();
#endif


Giovanni
by Giovanni
Wed Nov 08, 2023 9:43 am
Forum: Bug Reports
Topic: copy paste typo in SPIV3 (H7) driver. Topic is solved
Replies: 3
Views: 2167

Re: copy paste typo in SPIV3 (H7) driver. Topic is solved

Hi,

Fixed in trunk.

Any reason for using v1?

Giovanni
by Giovanni
Wed Nov 08, 2023 9:36 am
Forum: Bug Reports
Topic: Support for STM32G0B1 Topic is solved
Replies: 43
Views: 15312

Re: Support for STM32G0B1 Topic is solved

Hi,

Fixed in repository trunk.

Giovanni
by Giovanni
Tue Nov 07, 2023 9:50 am
Forum: Bug Reports
Topic: Support for STM32G0B1 Topic is solved
Replies: 43
Views: 15312

Re: Support for STM32G0B1 Topic is solved

Hi,

Could you post your halconf.h, mcuconf.h files causing compilation errors?

Giovanni
by Giovanni
Mon Nov 06, 2023 3:41 pm
Forum: Bug Reports
Topic: Support for STM32G0B1 Topic is solved
Replies: 43
Views: 15312

Re: Support for STM32G0B1 Topic is solved

Hi,

Any news?

Giovanni

Go to advanced search