Search found 260 matches
- Tue Nov 05, 2019 11:11 pm
- Forum: Development and Feedback
- Topic: PineTime smartwatch nrf52840
- Replies: 2
- Views: 862
PineTime smartwatch nrf52840
Pine64 is working on the PineTime smart watch. It will have a nRF528xx M4-F SoC from Nordic. The best news is that it will be under $25USD! I think it'll be great if ChibiOS/RT and HAL were ported to this platform, and other popular IoT SoCs. I think that would spur the adoption of ChibiOS. https://...
- Thu Aug 08, 2019 1:35 pm
- Forum: Bug Reports
- Topic: hal_files.h error in fileStreamGetSize: ')' at wrong place Topic is solved
- Replies: 3
- Views: 671
Re: hal_files.h error in fileStreamGetSize: ')' at wrong place Topic is solved
Hi! I'm using 19.1.3, but it is the same in master. Compile error In macro fileStreamGetSize: ../../../ChibiOS-git/os/hal/include/hal_files.h:210:40: error: too few arguments to function 'dtcFile->vmt->getsize' #define fileStreamGetSize(ip, offset) ((ip)->vmt->getsize(ip), offset) ^ I expect it to ...
- Wed Aug 07, 2019 5:13 pm
- Forum: General Support
- Topic: Test Driven Development with ChibiOS simulator
- Replies: 2
- Views: 1088
Re: Test Driven Development with ChibiOS simulator
I would encourage you to help with the work shared in this thread: http://www.chibios.com/forum/viewtopic.php?t=4861 If you can clean it up to the point where it could be 'upstreamed' it would be very beneficial. I also contributed to those ChibiOS HAL drivers for the POSIX port. They were very usef...
- Wed Aug 07, 2019 4:44 pm
- Forum: Development and Feedback
- Topic: [INFO] ChibiStudio P2 preinstalled into Linux Mint 19.2 VM
- Replies: 11
- Views: 1903
Re: [INFO] ChibiStudio P2 preinstalled into Linux Mint 19.2 VM
Any news on updating the Chibi debug plugin to work with recent version of eclipse (after the debug interface changed post Mars I believe)? Hi, it has already been done, you missed some post in the ChibiStudio forum about it. This VM contains the latest Eclipse and the updated plugin already. Great...
- Wed Aug 07, 2019 4:04 pm
- Forum: Development and Feedback
- Topic: [INFO] ChibiStudio P2 preinstalled into Linux Mint 19.2 VM
- Replies: 11
- Views: 1903
Re: [INFO] ChibiStudio P2 preinstalled into Linux Mint 19.2 VM
Any news on updating the Chibi debug plugin to work with recent version of eclipse (after the debug interface changed post Mars I believe)?
- Wed Aug 07, 2019 4:02 pm
- Forum: Development and Feedback
- Topic: [INFO] ChibiStudio P2 preinstalled into Linux Mint 19.2 VM
- Replies: 11
- Views: 1903
Re: [INFO] ChibiStudio P2 preinstalled into Linux Mint 19.2 VM
Hi Faisal, If you send me instructions, I will do that in my next try. This was pretty must an experiment, I don't know if people really need something like this. Giovanni I got an email from a Segger rep, here is what he said: > Just copy RTOSPlugin.dll (on Windows) to any J-Link SW download (to t...
- Mon Aug 05, 2019 5:40 pm
- Forum: ChibiOS/HAL
- Topic: Doubt regarding drivers implementation
- Replies: 23
- Views: 4325
Re: Doubt regarding drivers implementation
Hi! Sorry to dig up this post, but I started creating the driver for the software serial after finally made it work. I created a pseudo-driver in my app, that uses PAL and GPT to create multiple software serials. I use PAL line events to detect start bit(PAL_EVENT_MODE_FALLING_EDGE) and GPT in cont...
- Mon Aug 05, 2019 5:38 pm
- Forum: Development and Feedback
- Topic: [INFO] ChibiStudio P2 preinstalled into Linux Mint 19.2 VM
- Replies: 11
- Views: 1903
Re: [INFO] ChibiStudio P2 preinstalled into Linux Mint 19.2 VM
Hey Giovanni, how about including the required debugging setup for Segger devices? You can include the Segger GDB server support in your preinstalled Eclipse. The GNU MCU Eclipse plugin is useful in that regard, as it has a configuration page for Segger devices as well. You could also preinstall Seg...
- Tue May 28, 2019 11:07 am
- Forum: Bug Reports
- Topic: Virtual timer overflow Topic is solved
- Replies: 12
- Views: 1866
Re: Virtual timer overflow Topic is solved
Probably but it will be "conditional", executed only when the kernel is configured in the right mode: tickless and (sizeof(interval) > sizeof(time)) and no other timers active and systick frequency high enough to not take ages to complete. So you will not see it executed in default demos,...
- Mon May 27, 2019 5:00 pm
- Forum: Bug Reports
- Topic: Virtual timer overflow Topic is solved
- Replies: 12
- Views: 1866
Re: Virtual timer overflow Topic is solved
Will a test case be added to test for this?