Search found 18 matches
- Fri Nov 08, 2024 4:18 pm
- Forum: General
- Topic: STM32 compiler options
- Replies: 5
- Views: 2319
Re: STM32 compiler options
For some reason, the paths to the project were messed up - it was as if nothing was set and they were being created in drive C:
- Sun Nov 03, 2024 1:40 pm
- Forum: General
- Topic: STM32 compiler options
- Replies: 5
- Views: 2319
Re: STM32 compiler options
Using FCD settings for compiler Launching the compiler... C:\ProgramData\MatrixTSL\FlowcodeV10\FCD\ARM\batch\stm32comp.bat "ST32F030_DBOX" "" "32F030x8" "F0" "stm32f.ld" "8000000" "64K" "8K" "C:\Program Files (x86)\...
- Sun Nov 03, 2024 1:29 pm
- Forum: General
- Topic: STM32 compiler options
- Replies: 5
- Views: 2319
Re: STM32 compiler options
@REM These are the calling parameters ...
@REM "$(target)" "$(outdir)" "$(chipalt)" "$(family)" "$(lscript)" "$(romsize)" "$(ramsize)"
this is set up like this but "Unable to create C file \STM32F030_DBOX.h"
@REM "$(target)" "$(outdir)" "$(chipalt)" "$(family)" "$(lscript)" "$(romsize)" "$(ramsize)"
this is set up like this but "Unable to create C file \STM32F030_DBOX.h"
- Sun Nov 03, 2024 12:40 pm
- Forum: General
- Topic: STM32 compiler options
- Replies: 5
- Views: 2319
STM32 compiler options
Hello,
Please share what are the correct parameters of the Compiler Options.
If possible for all processors - in particular now I need them for STM ARM.
Thanks!
Please share what are the correct parameters of the Compiler Options.
If possible for all processors - in particular now I need them for STM ARM.
Thanks!
- Mon Oct 14, 2024 3:55 pm
- Forum: General
- Topic: Problem STM32 - 32F030C8.fcdx
- Replies: 4
- Views: 2074
Re: Problem STM32 - 32F030C8.fcdx
Thank you!
PF6 and PF7 for I2C 2 is not included - is there a reason?
PF6 and PF7 for I2C 2 is not included - is there a reason?
- Sat Oct 12, 2024 7:03 pm
- Forum: General
- Topic: Problem STM32 - 32F030C8.fcdx
- Replies: 4
- Views: 2074
Problem STM32 - 32F030C8.fcdx
Hello, I want to use the STM32F030C8 and I noticed that I can only use I2C 1 - I can't use I2C 2. I was looking at the config file 32F030C8.fcdx but I couldn't figure out all the parameters to add I2C 2. Please help! If there is help somewhere for what all the parameters in the configuration files a...
- Mon Apr 29, 2024 7:50 am
- Forum: General
- Topic: 9bit UART - Arduino Mega 2560
- Replies: 9
- Views: 5745
Re: 9bit UART - Arduino Mega 2560
I am using version 10, with commercial license full package.
call_UART::RETURN - 16 bits : "16 bit data mode returns 0-255 for valid data, 256 for a timeout" - This is hint from combobox
call_UART::RETURN - 16 bits : "16 bit data mode returns 0-255 for valid data, 256 for a timeout" - This is hint from combobox
- Mon Apr 29, 2024 6:37 am
- Forum: General
- Topic: 9bit UART - Arduino Mega 2560
- Replies: 9
- Views: 5745
Re: 9bit UART - Arduino Mega 2560
No, it isn't. 0.511 is a float type, 4 bytes. A 9-bit symbol is of type byte + flag bit, that is, the maximum number is 511 - b111111111. When making a buffer of 9-bit numbers with bytes - the odd ones are the 9th bit, that is, 0 or 1, and the even ones are the lower 8 bits, but the idea is that bot...
- Sun Apr 28, 2024 4:11 pm
- Forum: General
- Topic: 9bit UART - Arduino Mega 2560
- Replies: 9
- Views: 5745
Re: 9bit UART - Arduino Mega 2560
My idea is I get into a interrupt when receiving data, but how do I get to UCSRnB. This is code from datasheet: C Code Example: unsigned int USART_Receive( void ) { unsigned char status, resh, resl; /* Wait for data to be received */ while ( !(UCSRnA & (1<<RXCn)) ) ; /* Get status and 9th bit, t...
- Sun Apr 28, 2024 10:14 am
- Forum: General
- Topic: 9bit UART - Arduino Mega 2560
- Replies: 9
- Views: 5745
9bit UART - Arduino Mega 2560
Hello,
How to receive and send 9 bit data on the serial port - Arduino Mega 2560 ?
How to receive and send 9 bit data on the serial port - Arduino Mega 2560 ?