Search found 199 matches

by pito
Sat Feb 01, 2014 9:33 pm
Forum: ChibiStudio
Topic: Error 193
Replies: 11
Views: 9183

Re: Error 193

Maybe you may add the above stuff into, this is nicer to have: Linking build/ch.elf Creating build/ch.hex Creating build/ch.bin Creating build/ch.dmp text data bss dec hex filename 33848 664 4904 39416 99f8 build/ch.elf Done 21:32:30 Build Finished (took 45s.984ms) :)
by pito
Sat Feb 01, 2014 9:28 pm
Forum: ChibiStudio
Topic: Error 193
Replies: 11
Views: 9183

Re: Error 193

.. and because I miss the

Code: Select all

SZ   = $(TRGT)size


in the updated STM32F4 demo Makefile, the error was induced as the error 193.. :?
by pito
Sat Feb 01, 2014 9:06 pm
Forum: ChibiStudio
Topic: Error 193
Replies: 11
Views: 9183

Re: Error 193

I've deleted and restored the rules.mk via svn update: Restored: C:\ChibiStudio\chibios\os\ports\GCC\ARMCMx\rules.mk Completed: At revision: 6659 The error has disappeared: Linking build/ch.elf Creating build/ch.hex Creating build/ch.bin Creating build/ch.dmp Done 21:04:05 Build Finished (took 42s.2...
by pito
Sat Feb 01, 2014 8:33 pm
Forum: ChibiStudio
Topic: Error 193
Replies: 11
Views: 9183

Re: Error 193

I deleted the project from my workspace, as well as I deleted it from my repo. Then I did svn update, imported the fresh project into my workspace, copy/pasted it to My1-.. still get the error 193. Linking build/ch.elf Creating build/ch.hex Creating build/ch.bin Creating build/ch.dmp process_begin: ...
by pito
Sat Feb 01, 2014 4:46 pm
Forum: ChibiStudio
Topic: Error 193
Replies: 11
Views: 9183

Re: Error 193

My1-STM32F100-DISCOVERY works fine. PS: Even the 193 error above I get the hex compiled.. try resetting the project options to default for that project How to do that plz? :) PS: Validation on the project shows an error: Description Resource Path Location Type cvc-complex-type.2.4.a: Invalid content...
by pito
Sat Feb 01, 2014 4:22 pm
Forum: ChibiStudio
Topic: Error 193
Replies: 11
Views: 9183

Error 193

With latest chibios update 6659 I get following error while compiling the stm32f4 demo (under ChibiStudio): ..Creating build/ch.dmp process_begin: CreateProcess(C:\ChibiStudio\workspace\My1-STM32F407-DISCOVERY\build\ch.elf, build/ch.elf, ...) failed. make (e=193): Error 193 make: *** [build/ch.dmp] ...
by pito
Thu Jan 30, 2014 12:00 am
Forum: STM32 Support
Topic: Clock speed settings: Olimex STM32-E407 board
Replies: 3
Views: 4466

Re: Clock speed settings: Olimex STM32-E407 board

You may download an excel sheet from STM with all clock coef calculations. Works nice. :)
AN3988 - stm32f4 clock configuration tool, it generates c-code for you with all settings..
http://www.youtube.com/watch?v=L7i3QTYTezE
by pito
Thu Jan 02, 2014 8:27 pm
Forum: Development and Feedback
Topic: STM32L100 "Ultra Low Power - Value Line" support
Replies: 8
Views: 5524

Re: STM32L100 "Ultra Low Power - Value Line" support

It seems F100->L100 will not be an evening exercise - there are several (positive) changes - see this AN on F1 to L1 migration, for example:
AN3422
http://www.st.com/web/en/resource/techn ... 032987.pdf
But maybe covered by L152 already..
by pito
Thu Jan 02, 2014 6:50 pm
Forum: Development and Feedback
Topic: STM32L100 "Ultra Low Power - Value Line" support
Replies: 8
Views: 5524

Re: STM32L100 "Ultra Low Power - Value Line" support

PF2014!
I've got a couple of STM32L100RBT6 (128k flash / 10k ram) which is a "smaller" version of the STM32L100RCT6 used in the STM32L100C Discovery board. Do you think the STM32VL (except the board defs) settings may work with it ?
by pito
Tue Dec 10, 2013 4:51 pm
Forum: STM32 Support
Topic: Need explanations about Floating Point Unit
Replies: 17
Views: 10796

Re: Need explanations about Floating Point Unit

The FPU inside STM32F4 is a single precision fpu (32bit). Double precision calculations (64bit float number) are provided in software. To avoid the compiler optimizes the calculation off, you may try: .. // prints out a double precision number in hex void print64x( double x ) { const char* p; int j;...

Go to advanced search