Search found 33 matches

by Ralf9
Tue Jan 28, 2020 7:15 am
Forum: General discussion
Topic: SerialUSB doesn't work on Maple Mini and Bootloader2.0
Replies: 49
Views: 47469

Re: SerialUSB doesn't work on Maple Mini

it is not clear to me what this has to do with the bootloader.
I have testet it with the same bootloader on rogers core, it also works after a reset or plug off and on.
by Ralf9
Thu Jan 23, 2020 12:13 pm
Forum: General discussion
Topic: [SOLVED]Timer changes since 1.6
Replies: 14
Views: 9933

Re: Timer changes since 1.6

maybe you need this

Code: Select all

MyTim->setMode(2, TIMER_OUTPUT_COMPARE);
viewtopic.php?f=62&t=117
by Ralf9
Thu Jan 23, 2020 6:55 am
Forum: General discussion
Topic: SerialUSB doesn't work on Maple Mini and Bootloader2.0
Replies: 49
Views: 47469

Re: SerialUSB doesn't work on Maple Mini

I'm seeing something similar with the 1.8.0 core on Ubuntu, after uploading a sketch the board never shows back up as /dev/ttyACM0, so I cannot open the Serial Monitor. To upload the sketch again I have to hit RESET right after selecting Upload. I can then switch to Roger's core, upload a sketch us...
by Ralf9
Mon Jan 20, 2020 5:46 pm
Forum: General discussion
Topic: SerialUSB doesn't work on Maple Mini and Bootloader2.0
Replies: 49
Views: 47469

Re: SerialUSB doesn't work on Maple Mini

Happy too early. It doses not work after a reset or power off. It works only after upload. I use the Bootloader 2.0 fu-util: Invalid DFU suffix signature dfu-util: A valid DFU suffix will be required in a future dfu-util release!!! Opening DFU capable USB device... ID 1eaf:0003 Run-time device DFU v...
by Ralf9
Sun Jan 19, 2020 7:12 pm
Forum: General discussion
Topic: [SOLVED]Hardwaretimer do not work on Maple Mini
Replies: 2
Views: 11651

Re: Hardwaretimer do not work on Maple Mini

Thank you, when I insert this MyTim->setMode(2, TIMER_OUTPUT_COMPARE); before MyTim->setOverflow(31*1000, MICROSEC_FORMAT); then it works. Is this needed #if defined(TIM1) TIM_TypeDef *Instance = TIM1; #else TIM_TypeDef *Instance = TIM2; #endif Or can I on the Maple Mini always use TIM_TypeDef *Inst...
by Ralf9
Sun Jan 19, 2020 4:02 pm
Forum: General discussion
Topic: [SOLVED]Hardwaretimer do not work on Maple Mini
Replies: 2
Views: 11651

[SOLVED]Hardwaretimer do not work on Maple Mini

Hi,

I have test the code in this example:
https://github.com/stm32duino/STM32Exam ... llback.ino
The LED do not blink
by Ralf9
Sat Jan 18, 2020 6:15 pm
Forum: General discussion
Topic: use of SPI2 on SPI- or Ethernet lib
Replies: 3
Views: 4394

Re: use of SPI2 on SPI- or Ethernet lib

With this it works with the pins of SPI2 #define csPin 31 #define mosiPin 28 // MOSI out #define misoPin 29 // MISO in #define sckPin 30 // SCLK out SPI.setMISO(misoPin); SPI.setMOSI(mosiPin); SPI.setSCLK(sckPin); SPI.begin(); //Initialize the SPI port. SPI.setBitOrder(MSBFIRST); SPI.setDataMode(SPI...
by Ralf9
Fri Jan 17, 2020 11:47 pm
Forum: General discussion
Topic: use of SPI2 on SPI- or Ethernet lib
Replies: 3
Views: 4394

use of SPI2 on SPI- or Ethernet lib

Hi,

is there a possibility to use on Maple Mini SPI2 on the SPI- or Ethernet library?

I don't find any way at the SPI- or Ethernet library, how I can specify that I want use SPI2

Thank you
Ralf
by Ralf9
Fri Jan 17, 2020 11:27 pm
Forum: General discussion
Topic: SerialUSB doesn't work on Maple Mini and Bootloader2.0
Replies: 49
Views: 47469

Re: SerialUSB doesn't work on Maple Mini

Thank You,

With the bootloder v2.0 now it works

Go to advanced search