Search found 11 matches
- Wed Jan 15, 2025 1:35 pm
- Forum: General discussion
- Topic: NUCLEO-H7A3ZI-Q Code loads but does not run
- Replies: 29
- Views: 3735
Re: NUCLEO-H7A3ZI-Q Code loads but does not run
Thank you, this was a bit not intuitive for me but it works now
- Wed Jan 15, 2025 1:06 pm
- Forum: General discussion
- Topic: NUCLEO-H7A3ZI-Q Code loads but does not run
- Replies: 29
- Views: 3735
Re: NUCLEO-H7A3ZI-Q Code loads but does not run
done
https://github.com/stm32duino/Arduino_C ... ssues/2632
setRx/Tx seems like not works for me
I also tried to change clocks
https://github.com/stm32duino/Arduino_C ... ssues/2632
setRx/Tx seems like not works for me
I also tried to change clocks
- Wed Jan 15, 2025 10:46 am
- Forum: General discussion
- Topic: NUCLEO-H7A3ZI-Q Code loads but does not run
- Replies: 29
- Views: 3735
Re: NUCLEO-H7A3ZI-Q Code loads but does not run
SB16 and SB17 are on.
without while(!Serial); it does not blink for both Serial and SerialUSB (USB support (if available): CDC (generic 'Serial' supersede U(S)ART))
according to https://os.mbed.com/platforms/ST-Nucleo-H7A3ZI-Q/
PD9 and PD8 are Tx and Rx of UART4
I set:
#define PIN_SERIAL_RX PD8 ...
without while(!Serial); it does not blink for both Serial and SerialUSB (USB support (if available): CDC (generic 'Serial' supersede U(S)ART))
according to https://os.mbed.com/platforms/ST-Nucleo-H7A3ZI-Q/
PD9 and PD8 are Tx and Rx of UART4
I set:
#define PIN_SERIAL_RX PD8 ...
- Tue Jan 14, 2025 3:47 pm
- Forum: General discussion
- Topic: NUCLEO-H7A3ZI-Q Code loads but does not run
- Replies: 29
- Views: 3735
Re: NUCLEO-H7A3ZI-Q Code loads but does not run
I don't know if it's related to this problem or not but serial communication seems not works properly.
Example:
#define ledPin PB0
void setup() {
Serial.begin(9600);
while(!Serial);
pinMode(ledPin, OUTPUT);
}
void loop() {
digitalWrite(ledPin, !digitalRead(ledPin));
delay(100);
Serial ...
Example:
#define ledPin PB0
void setup() {
Serial.begin(9600);
while(!Serial);
pinMode(ledPin, OUTPUT);
}
void loop() {
digitalWrite(ledPin, !digitalRead(ledPin));
delay(100);
Serial ...
- Mon Jan 13, 2025 3:29 pm
- Forum: General discussion
- Topic: NUCLEO-H7A3ZI-Q Code loads but does not run
- Replies: 29
- Views: 3735
Re: NUCLEO-H7A3ZI-Q Code loads but does not run
I did several tests and both yours and mine branches works.
I just realized that LED_BUILTIN is PNUM_NOT_DEFINED and not PB0.
Thank you for support
I just realized that LED_BUILTIN is PNUM_NOT_DEFINED and not PB0.
Thank you for support
- Mon Jan 13, 2025 1:46 pm
- Forum: General discussion
- Topic: NUCLEO-H7A3ZI-Q Code loads but does not run
- Replies: 29
- Views: 3735
Re: NUCLEO-H7A3ZI-Q Code loads but does not run
changed but same problem, after upload no reaction.fpiSTM wrote: Mon Jan 13, 2025 1:38 pmCode: Select all
- maximum_data_size=1458176 + maximum_data_size=1048576
- Mon Jan 13, 2025 8:07 am
- Forum: General discussion
- Topic: NUCLEO-H7A3ZI-Q Code loads but does not run
- Replies: 29
- Views: 3735
Re: NUCLEO-H7A3ZI-Q Code loads but does not run
@fpiSTM
thank you for response,
I will do the tests and report the issue
thank you for response,
I will do the tests and report the issue
- Thu Jan 09, 2025 4:13 pm
- Forum: General discussion
- Topic: NUCLEO-H7A3ZI-Q Code loads but does not run
- Replies: 29
- Views: 3735
Re: NUCLEO-H7A3ZI-Q Code loads but does not run
Here accidentally spitted by 2 commits
https://github.com/byquip/Arduino_Core_ ... 8f9f45abcb
https://github.com/byquip/Arduino_Core_ ... a7f460fcbd
https://github.com/byquip/Arduino_Core_ ... 8f9f45abcb
https://github.com/byquip/Arduino_Core_ ... a7f460fcbd
- Thu Jan 09, 2025 3:13 pm
- Forum: General discussion
- Topic: NUCLEO-H7A3ZI-Q Code loads but does not run
- Replies: 29
- Views: 3735
Re: NUCLEO-H7A3ZI-Q Code loads but does not run
It happened automatically in my case.
Now I have similar problem as the author.
Upload the blink sketch and nothing happens.
Before that I had some problem in generic_clock.c with unknown PWR_DIRECT_SMPS_SUPPLY.
fixed with:
#define PWR_CR3_SMPSEN_Pos (2U)
#define PWR_CR3_SMPSEN_Msk (0x1UL << PWR ...
Now I have similar problem as the author.
Upload the blink sketch and nothing happens.
Before that I had some problem in generic_clock.c with unknown PWR_DIRECT_SMPS_SUPPLY.
fixed with:
#define PWR_CR3_SMPSEN_Pos (2U)
#define PWR_CR3_SMPSEN_Msk (0x1UL << PWR ...
- Thu Jan 09, 2025 2:02 pm
- Forum: General discussion
- Topic: NUCLEO-H7A3ZI-Q Code loads but does not run
- Replies: 29
- Views: 3735
Re: NUCLEO-H7A3ZI-Q Code loads but does not run
Thank you for the hint.
Removing arduino-ide folder from AppData helps BUT after all the changes and before close IDE need to remove link from Preferences
https://raw.githubusercontent.com/stm32duino/BoardManagerFiles/master/STM32/package_stm_index.json
If not then all changes will be overwritten ...
Removing arduino-ide folder from AppData helps BUT after all the changes and before close IDE need to remove link from Preferences
https://raw.githubusercontent.com/stm32duino/BoardManagerFiles/master/STM32/package_stm_index.json
If not then all changes will be overwritten ...