@fpiSTM
Thankyou so much mate! It works now, my bad!
Search found 10 matches
- Thu Aug 10, 2023 10:45 am
- Forum: General discussion
- Topic: Error compiling for board Generic STM32F1 series
- Replies: 9
- Views: 4144
- Wed Aug 09, 2023 7:52 am
- Forum: General discussion
- Topic: Error compiling for board Generic STM32F1 series
- Replies: 9
- Views: 4144
Re: Error compiling for board Generic STM32F1 series
@fpiSTM
Can you help me you out bro?
Can you help me you out bro?
- Fri Jul 28, 2023 7:08 pm
- Forum: General discussion
- Topic: Error compiling for board Generic STM32F1 series
- Replies: 9
- Views: 4144
Re: Error compiling for board Generic STM32F1 series
#include <math.h>
// Voltages and Current of load
// yahn values define hongi, 200 values of each parameters
double va_1[] = {15.5091227894435,-5.36814829343161,4.77825614224858,14.9200345244603,25.0471492256280,35.1495864313483,45.2173630048096,55.2405342959398,65.2092025725870,75.1135258521888 ...
// Voltages and Current of load
// yahn values define hongi, 200 values of each parameters
double va_1[] = {15.5091227894435,-5.36814829343161,4.77825614224858,14.9200345244603,25.0471492256280,35.1495864313483,45.2173630048096,55.2405342959398,65.2092025725870,75.1135258521888 ...
- Fri Jul 28, 2023 6:51 pm
- Forum: General discussion
- Topic: Error compiling for board Generic STM32F1 series
- Replies: 9
- Views: 4144
Re: Error compiling for board Generic STM32F1 series
kindly, check the setting file i shared as a link because the other code i use in arduino is working fine on the same setting.
- Fri Jul 28, 2023 6:26 pm
- Forum: General discussion
- Topic: Error compiling for board Generic STM32F1 series
- Replies: 9
- Views: 4144
Re: Error compiling for board Generic STM32F1 series
fpiSTM
I use blackpill STMF103C8T6 with ST-LINK and FDTI, and it works fine when select the shared setting above means the code is successfully uploaded but when I use the shared code to compile into this it gives me the error "ERROR COMPILING FOR BOARD GENERIES STM32F1 SERIES".
I used arduino IDE ...
I use blackpill STMF103C8T6 with ST-LINK and FDTI, and it works fine when select the shared setting above means the code is successfully uploaded but when I use the shared code to compile into this it gives me the error "ERROR COMPILING FOR BOARD GENERIES STM32F1 SERIES".
I used arduino IDE ...
- Fri Jul 28, 2023 3:10 pm
- Forum: General discussion
- Topic: Error compiling for board Generic STM32F1 series
- Replies: 9
- Views: 4144
Error compiling for board Generic STM32F1 series
I've getting the error below while compiling using arduino IDE into STMF103C8T6 (Blackpill).
IC:\\Users\\User\\Documents\\ArduinoData\\packages\\STMicroelectronics\\hardware\\stm32\\2.5.0\\cores\\arduino/avr" "-IC:\\Users\\User\\Documents\\ArduinoData\\packages\\STMicroelectronics\\hardware\\stm32 ...
IC:\\Users\\User\\Documents\\ArduinoData\\packages\\STMicroelectronics\\hardware\\stm32\\2.5.0\\cores\\arduino/avr" "-IC:\\Users\\User\\Documents\\ArduinoData\\packages\\STMicroelectronics\\hardware\\stm32 ...
- Sun May 14, 2023 2:40 am
- Forum: General discussion
- Topic: Unable to calculate/update Theta value for d-q transformation (Park Transformation)
- Replies: 7
- Views: 4249
Re: Unable to calculate/update Theta value for d-q transformation (Park Transformation)
Bro, don't need to worry. I just troubleshoot the issue. thanks!dannyf wrote: Sun May 14, 2023 2:27 ammaybe you can state 1) what you are expecting and why; and 2) what you are getting.the problem is that the theta isn't updating due to which i'm not the d-q values proper (dc output) instead it shows sinusoidal.
- Sun May 14, 2023 12:43 am
- Forum: General discussion
- Topic: Unable to calculate/update Theta value for d-q transformation (Park Transformation)
- Replies: 7
- Views: 4249
Re: Unable to calculate/update Theta value for d-q transformation (Park Transformation)
What do you mean? can you elaborate or suggest a fix?GonzoG wrote: Sat May 13, 2023 10:32 pm There's "big" user error and your program crashes.Code: Select all
... Theta[200].... for(int n=2;n<200;n++) { ... Theta[n+1]=... }
- Sat May 13, 2023 9:55 pm
- Forum: General discussion
- Topic: Unable to calculate/update Theta value for d-q transformation (Park Transformation)
- Replies: 7
- Views: 4249
Re: Unable to calculate/update Theta value for d-q transformation (Park Transformation)
the problem is that the theta isn't updating due to which i'm not the d-q values proper (dc output) instead it shows sinusoidal.dannyf wrote: Sat May 13, 2023 9:36 pmwhat problem is "the problem"?I have tried to locate the problem...
- Sat May 13, 2023 9:14 pm
- Forum: General discussion
- Topic: Unable to calculate/update Theta value for d-q transformation (Park Transformation)
- Replies: 7
- Views: 4249
Unable to calculate/update Theta value for d-q transformation (Park Transformation)
I am trying to perform a d-q transformation on a signal after performing a clark transformation, but I am unable to calculate/update the theta value required for the transformation. I suspect there is a problem with the line "Theta[n+1]=Theta[n]+(2PI)(fo*Ts);" in my code. I am using an Arduino IDE ...