Search found 14446 matches

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

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: 1107

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: 1995

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: 14723

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: 14723

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: 14723

Re: Support for STM32G0B1 Topic is solved

Hi,

Any news?

Giovanni
by Giovanni
Mon Nov 06, 2023 10:07 am
Forum: Bug Reports
Topic: STM32L5 hard FPU support compile error
Replies: 2
Views: 1093

Re: STM32L5 hard FPU support compile error

Hi,

It is a bug, the M33 port is not yet fully validated, will look into this as soon as possible, apparently part of the FPU-related code is not yet there for v8-M architecture.

Giovanni
by Giovanni
Sun Oct 29, 2023 6:30 pm
Forum: Small Change Requests
Topic: Extend MAC HAL API by macClearInterrupts() Topic is solved
Replies: 4
Views: 2973

Re: Extend MAC HAL API by macClearInterrupts() Topic is solved

Note that multiple writes into a descriptor still result in a single frame sent, the limit is the maximum frame site.

Writes are just a way to "assemble" frame composed of multiple parts.

Giovanni
by Giovanni
Sat Oct 28, 2023 6:22 pm
Forum: Small Change Requests
Topic: Extend MAC HAL API by macClearInterrupts() Topic is solved
Replies: 4
Views: 2973

Re: Extend MAC HAL API by macClearInterrupts() Topic is solved

Hi, Exposing workarounds and interrupt-related code at HAL API level is against "rules", drivers are meant to hide inner details to the user code. You should try to hide interrupt clearing within the driver, there are SPI functions that can be called from withing ISRs, see spiStartSendI() ...

Go to advanced search