Search found 1657 matches

by ag123
Wed Mar 13, 2024 4:40 am
Forum: General discussion
Topic: STM32F407VGT6 programming issues
Replies: 4
Views: 339

Re: STM32F407VGT6 programming issues

one thing to try is to press and hold reset when you flash the sketch over st-link, this is called 'connect under reset'. If the tool chain is properly installed, sometimes that will override the write protection. flash a simple sketch such as to blink the led, so that you know if after all it is wo...
by ag123
Mon Mar 11, 2024 10:23 am
Forum: General discussion
Topic: How to port Arduino firmware into STM32 Cube IDE
Replies: 2
Views: 370

Re: How to port Arduino firmware into STM32 Cube IDE

For beginners, it is much easier to simply follow the getting started guide https://github.com/stm32duino/Arduino_Core_STM32/wiki/Getting-Started and to use a supported board on the STM core page. https://github.com/stm32duino/Arduino_Core_STM32 it is also suggested to get a chip that has more sram ...
by ag123
Tue Mar 05, 2024 4:03 pm
Forum: General discussion
Topic: Problem Uploading to STM32F405 from Arduino IDE
Replies: 3
Views: 445

Re: Problem Uploading to STM32F405 from Arduino IDE

jneymeyer There are some pre-requisites The first place to visit is the stm32duino wiki - which is hosted in Github instead of here. https://github.com/stm32duino/Arduino_Core_STM32/wiki Among that is the getting started guide https://github.com/stm32duino/Arduino_Core_STM32/wiki/Getting-Started Th...
by ag123
Sun Mar 03, 2024 10:18 pm
Forum: STM32H7 based boards
Topic: stm32h723 mini core board camera module
Replies: 2
Views: 1215

Re: stm32h723 mini core board camera module

if you bought it from e.g. weact
https://github.com/WeActStudio/MiniSTM32H7xx
you may need to contact them

there could be more than a few vendors, hence, it may not after all be weact, you may like to check from where you bought the board from
by ag123
Tue Feb 27, 2024 8:01 am
Forum: General discussion
Topic: [STM32F103C8T6] How can I use '128 Kbytes of Flash memory'?
Replies: 2
Views: 451

Re: [STM32F103C8T6] How can I use '128 Kbytes of Flash memory'?

officially u'd need to get a stm32f103c{b,B}t6, that one has 128 k per specs, c8 is 64k per specs. So if you think you literally have 128k memory, you can try a variant for 128k e.g. maple mini. The details are actually in the ld script, check in there in the variant. Alternatively, get something li...
by ag123
Mon Feb 26, 2024 3:56 am
Forum: General discussion
Topic: STM32 hangs when >100khz signal applied to input
Replies: 19
Views: 1054

Re: STM32 hangs when >100khz signal applied to input

try something like a stm32 f4xx (e.g. stm32f401 / f411 ) board, those has the FPU, but that it is for floats only.

other things to try are to move the computation codes into loop() and only use the ISR callback to simply count cycles, e.g. increment a global variable.
by ag123
Wed Feb 21, 2024 1:19 pm
Forum: General discussion
Topic: How to use PC14/PC15 as GPIO on STM32F407VGT6
Replies: 5
Views: 449

Re: How to use PC14/PC15 as GPIO on STM32F407VGT6

PC14 OSC32_IN PC15 OSC32_OUT is normally used for a 32 khz crystal for the RTC. it is probably not a good idea to use them as gpio ports. e.g. there is likely a 'not gate' connecting PC14 to PC15 with some extra stuff. that 'not gate' is literally used as an amplifier, given sufficient conditions e,...
by ag123
Tue Feb 20, 2024 2:00 pm
Forum: General discussion
Topic: Support for 32-bit Windows?
Replies: 3
Views: 686

Re: Support for 32-bit Windows?

The trouble with operating in 32 bits is you need a gcc-none-eabi compiler built for 32 bits. Fortunately, they are there https://developer.arm.com/downloads/-/gnu-rm and not least, you need the full suite of glibs and libs that gcc runs on, along with any libs that the rest of the tools depends on....
by ag123
Tue Feb 20, 2024 1:42 pm
Forum: General discussion
Topic: How to access low level registers or How to set TIM1 to 128Mhz
Replies: 10
Views: 1422

Re: How to access low level registers or How to set TIM1 to 128Mhz

dannyf I think the op kind of mentions that stm32g071 timers can do 128 Mhz. it is something quite interesting to explore, that is practically VHF, FM radio frequencies if you noted. in a sense if that is possible, even for that matter use it as an oscillator, mix it with FM radio waves from an ant...
by ag123
Sun Feb 18, 2024 8:48 pm
Forum: General discussion
Topic: Properly handling timer overflow ?
Replies: 6
Views: 577

Re: Properly handling timer overflow ?

assuming that you are using stm32f103. I think in stm32f103 the timers are 16 bits. but that it has a prescaler which is 16 bits I've not reviewed the codes really. But that keep rm0008 handy as it tells you what is ultimately available in the hardware. https://www.st.com/resource/en/reference_manua...

Go to advanced search