Search found 64 matches

by feluga
Wed Aug 05, 2020 1:59 am
Forum: Projects
Topic: STM32F103C8 BluePill VGA Project
Replies: 42
Views: 37029

Re: STM32F103C8 BluePill VGA Project

Hello! Some News: - I have released version 1.1 with support for Arduino Print Class on BlueVGA. - It's possible to print to the screen in the same way as Serial.print() and Serial.println() - Thus the VGA Monitor can work as an output monitor for Arduino Sketches! - It scrolls the screen automatica...
by feluga
Wed Jul 22, 2020 4:09 pm
Forum: Projects
Topic: STM32SAM - Speech Synthesizer
Replies: 4
Views: 5511

Re: STM32SAM - Speech Synthesizer

Nice! Really Cool Project! +5
by feluga
Tue Jul 21, 2020 7:56 pm
Forum: Projects
Topic: Flying RC Rocket
Replies: 5
Views: 4579

Re: Flying RC Rocket

Really Cool! I'd not seen a drone like that!
by feluga
Thu May 21, 2020 7:31 pm
Forum: General discussion
Topic: Problem uploading to STM32F103C8T6 board
Replies: 14
Views: 20324

Re: Problem uploading to STM32F103C8T6 board

My LED is blinking with any combination of jumpers... I guess that's a bad thing then. Most STM32F103 development boards come with a pre installed blink program. I think it is part of QA process. For me, when I open a bag with a brand new bluepill and plug it to USB to turn it on, it starts blinkin...
by feluga
Sun May 17, 2020 4:35 pm
Forum: General discussion
Topic: How to use SPI2
Replies: 17
Views: 33137

Re: How to use SPI2

This post has an exemple on how to use SPI2 with Roger's core: https://github.com/rogerclarkmelbourne/Arduino_STM32/pull/536 void setup() { // Source: https://community.platformio.org/t/pio-arduino-stm32f103cbt6-remap/6786/5 afio_cfg_debug_ports(AFIO_DEBUG_SW_ONLY); // PB3 free afio_remap(AFIO_REMAP...
by feluga
Sun May 17, 2020 4:23 pm
Forum: General discussion
Topic: How to use SPI2
Replies: 17
Views: 33137

Re: How to use SPI2

SphericalSound wrote: Sun May 17, 2020 4:08 pm
Roger Clark, the creator of the libary said to do:

SPI.setMOSI(PB15);
SPI.setMISO(PB14);
SPI.setSCLK(PB13);
SPI.begin();

Or:

SPIClass SPI_2(PB15,PB14,PB13);
SPI_2.begin();
This is related to Official STM32 Core.
https://github.com/rogerclarkmelbourne/ ... issues/432
by feluga
Sat May 16, 2020 3:44 am
Forum: Projects
Topic: STM32F103C8 BluePill VGA Project
Replies: 42
Views: 37029

Re: STM32F103C8 BluePill VGA Project

I'm now working on creating a "dual-core" :roll: version of this VGA library that can be used transparently with Roger's Core and Official Core. This new version is now released. The library BlueVGA 1.0 works transparently for both cores (STM32 and Roger's). The library and source code ca...
by feluga
Fri May 15, 2020 4:56 am
Forum: General discussion
Topic: How to disable HardwareTimer on STM32 Core?
Replies: 5
Views: 4108

Re: How to disable HardwareTimer on STM32 Core?

Yes it is fixed in the master and will be available in the next release 1.9.0, which will be release in the coming days. I just noticed that version 1.9.0 is released. I just updated my library BlueVGA to verion 1.0 that works transparently for both cores (STM32 and Roger's). The library and source...
by feluga
Fri May 15, 2020 2:17 am
Forum: General discussion
Topic: How to disable HardwareTimer on STM32 Core?
Replies: 5
Views: 4108

Re: How to disable HardwareTimer on STM32 Core?

Is it a bug on the STM32 Core version 1.8.0? Or am I doing something wrong? I checked it on GitHub and it sounds like this issue with analog.h has been fixed in the version 1.9.0 But this version is not available to be installed by Arduino IDE Board Manager... I managed to fix it manually, but I'll...
by feluga
Fri May 15, 2020 1:53 am
Forum: General discussion
Topic: How to disable HardwareTimer on STM32 Core?
Replies: 5
Views: 4108

Re: How to disable HardwareTimer on STM32 Core?

thanks for your help! https://github.com/stm32duino/wiki/wiki/Customize-build-options-using-build_opt.h I added build_opt.h file to my scketch as below: -DHAL_TIM_MODULE_ONLY I tested it in the blink.ino sketch, as below. // preprocessor testing for build_opt.h #ifdef HAL_TIM_MODULE_ONLY #warning &q...

Go to advanced search