Search found 29 matches

by aGuegu
Mon Nov 25, 2019 3:59 am
Forum: Development and Feedback
Topic: DMAv1 demo for STM32
Replies: 2
Views: 2218

Re: DMAv1 demo for STM32

Thanks for pointing out the direction. :)
by aGuegu
Sat Nov 23, 2019 11:39 pm
Forum: Development and Feedback
Topic: DMAv1 demo for STM32
Replies: 2
Views: 2218

DMAv1 demo for STM32

DMA is widely used in normal drivers like UART, SPI, and I2c. I wish there can be a pure DMA example provided for STM32. I am trying to implement a customized DMA channel, like M2P, memory to PWM exactly in my case. However I found DMA driver is missed in the HAL doc. If I tried to call `dmaStreamAl...
by aGuegu
Thu Oct 17, 2019 8:40 pm
Forum: Development and Feedback
Topic: [INFO] Moving repository to OSDN
Replies: 22
Views: 11559

Re: [INFO] Moving repository to OSDN

Congratulations to ChibiOS. I believe it will grow even better. Well, I can not say it is pointless to offer old downloads. In my case, I have a few demos develop on 17.6.4 (two years ago), and they would fail to build because the project structure and conf version got upgraded in the latest ChibiOS...
by aGuegu
Thu Oct 17, 2019 9:10 am
Forum: Development and Feedback
Topic: [INFO] Moving repository to OSDN
Replies: 22
Views: 11559

Re: [INFO] Moving repository to OSDN

I am so happy to see ChibiOS is still vivid and the community is so active.

May I ask how do I suppose to download Older releases? like 17.6.4. I have checked sourceforge, but it looks like all the downloads are gone. But OSDN only got 18.x and 19.x for now.
by aGuegu
Mon Apr 09, 2018 4:39 pm
Forum: General Support
Topic: STM8 support dropped?
Replies: 8
Views: 6233

Re: STM8 support dropped?

Both ST-Link v1/v2 works fine with stm8flash. I do not know how to debug on stm8, stm32 also, with GDB. All I got is one or two blinking led and serial output, and building my projects little step by step. I know it is a lot of work. And I understand why you drop support. There is another rtos calle...
by aGuegu
Mon Apr 09, 2018 7:21 am
Forum: General Support
Topic: STM8 support dropped?
Replies: 8
Views: 6233

Re: STM8 support dropped?

Is now a good timing to reconsider stm8 support? Now SDCC, like 3.6.0, supports stm8 quite well. The community has developed a patch on STM standard Periph Libs. https://github.com/gicking/STM8-SPL_SDCC_patch/ I personally have tried the patched lib with SDCC on several typical boards, and I will ke...
by aGuegu
Sat Feb 17, 2018 2:54 pm
Forum: Bug Reports
Topic: Git not tracking Topic is solved
Replies: 32
Views: 17176

Re: Git not tracking Topic is solved

I think it is another opportunity to consider using git and github.

Sourceforge has been down for days in their datacenter movement. So sad.
by aGuegu
Mon Jan 01, 2018 4:54 pm
Forum: General Support
Topic: Soft reset
Replies: 17
Views: 16061

Re: Soft reset

For STM32F103, coretx M-3 based chip, void softreset(void) { *(uint32_t *)(0xE000ED0CUL) = 0x05FA0000UL | (*(uint32_t *)(0xE000ED0CUL) & 0x0700) | 0x04; } It is mainly the NVIC_SystemReset in core_cm3.h in stdperiph lib. Other cores have this function too. According to RM0008, this software rese...
by aGuegu
Mon Dec 18, 2017 3:26 am
Forum: Bug Reports
Topic: Git not tracking Topic is solved
Replies: 32
Views: 17176

Re: Git not tracking Topic is solved

Hi, I have it working now. Here is the travis config + script: https://github.com/korken89/travis_chibi Here is my current place where Travis uploads it: https://github.com/korken89/ChibiOS Here is the travis: https://travis-ci.org/korken89/travis_chibi Instructions to set it up: 1. Generate a pers...
by aGuegu
Fri Dec 15, 2017 5:13 pm
Forum: Bug Reports
Topic: Git not tracking Topic is solved
Replies: 32
Views: 17176

Re: Git not tracking Topic is solved

A tool named subgit may fit our need, but it looks heavy and also require hook config.

https://subgit.com/remote-book.html#pre ... hange_hook

Maybe we should stick to the git-svn tools...

Go to advanced search