Search found 94 matches

by Pito
Sun Apr 05, 2020 4:50 pm
Forum: Projects
Topic: STM32F103C8 and NEO-M6N gps module
Replies: 19
Views: 14488

Re: STM32F103C8 and NEO-M6N gps module

I think the NEO module sends a message every second by default. So I would not expect NEO's TX will continual lit. BPills Serial1 TX shall blink when your code sends something out (otherwise LED is off). PS: remove both delay() in your loop() code.. PPS: as I wrote above your LEDs have to be wired t...
by Pito
Sun Apr 05, 2020 4:31 pm
Forum: Projects
Topic: STM32F103C8 and NEO-M6N gps module
Replies: 19
Views: 14488

Re: STM32F103C8 and NEO-M6N gps module

I've been sending binary packets to the NEO7 via Serial1 (9600).
I think you have to switch it to the NMEA instead (unless it is done in your driver).
How?? Hmm..
by Pito
Sun Apr 05, 2020 4:20 pm
Forum: Projects
Topic: STM32F103C8 and NEO-M6N gps module
Replies: 19
Views: 14488

Re: STM32F103C8 and NEO-M6N gps module

I've been using bluepill with NEO7M.
Different code however (it writes directly in binary some settings).

Put 470-1kohm resistors in series with Rx/Tx lines to be safe.

Troubleshooting serial is always a mess :)
by Pito
Sun Apr 05, 2020 4:11 pm
Forum: Projects
Topic: STM32F103C8 and NEO-M6N gps module
Replies: 19
Views: 14488

Re: STM32F103C8 and NEO-M6N gps module

Fastest way - you may add LEDs (via 1k resistors) on the RX and TX lines of the Serial1.
Active is low with serial.
Vcc--[1k]--|>|----RX/TX
You will see blinks when data on Rx or Tx

Btw is your NEO6 5V or 3.3V??
by Pito
Sun Apr 05, 2020 3:57 pm
Forum: Projects
Topic: STM32F103C8 and NEO-M6N gps module
Replies: 19
Views: 14488

Re: STM32F103C8 and NEO-M6N gps module

Doublecheck Rx/Tx lines (I always put 470ohm resistors in series with both rx/tx in case I messed up the wiring, btw).
Also doubleckeck whether Neo6 is in binary mode (there are two modes afaik, text and binary).
by Pito
Sun Apr 05, 2020 3:38 pm
Forum: Projects
Topic: STM32F103C8 and NEO-M6N gps module
Replies: 19
Views: 14488

Re: STM32F103C8 and NEO-M6N gps module

Add the test for Serial (usb)..

Code: Select all

void setup() {
    Serial1.begin(9600);
    Serial.begin(115200);
    delay(2000);
    Serial.println("GPS NEO6N starts..");
}
What do you get now?
by Pito
Tue Feb 18, 2020 10:09 pm
Forum: STM32F4 based boards
Topic: Is there any ported RTOS for STM32F407VE?
Replies: 12
Views: 10378

Re: Is there any ported RTOS for STM32F407VE?

This is one of the best RTOSes you may get for F407:

http://chibios.org/dokuwiki/doku.php

Best way to start is with ChibiStudio:

http://chibios.org/dokuwiki/doku.php?id ... udio:start

The author of Chibios works for STM, afaik.
by Pito
Wed Feb 12, 2020 9:11 pm
Forum: General discussion
Topic: freeRTOS900 hangs
Replies: 5
Views: 4425

Re: freeRTOS900 hangs

That description of your problem is not enough to help you.
Porting existing libraries into an Rtos is not easy - you have to create tasks which interacts, etc.
Best you will publish your entire code and it could be somebody helps you then..
by Pito
Tue Jan 28, 2020 9:03 am
Forum: General discussion
Topic: [Help]How to configure PA15 PC13 PC14 PC15 as inputs on Libmaple core
Replies: 5
Views: 6909

Re: [Help]How to configure PA15 PC13 PC14 PC15 as inputs on Libmaple core

Those pins have some limitation - speed and fanout (they are weaker). It was discussed how to enable them on the old forum many times. https://stm32duinoforum.com/forum/index_php.html I think the pins with 32kHz resonator should work when oscillator disabled. Mind there are capacitors to the ground,...

Go to advanced search