Search found 57 matches

by HardWareMan
30 Aug 2019 05:16
Forum: mikroPascal PRO for ARM General
Topic: ^uint64, not works
Replies: 6
Views: 2563

Re: ^uint64, not works

moin moin, Procedure Move8Byte; var S,D: ^uint64; Begin S := @CAN1_RX.Data[0]; //-> Array[8] of Byte; D := @CAN1_TX.Data[0]; //-> Array[8] of Byte; D^ := S^; End; SW-Debug ok. HW-Debug -> D^ := S^; -> Exception, HardFault. MC: STM32F103C8, STM32F303CC ??? Peter You've got HardFault because of acces...
by HardWareMan
13 Feb 2017 10:59
Forum: mikroBasic PRO for ARM General
Topic: Ultra Fast GPIO Access on STM32F0
Replies: 8
Views: 10476

Re: Ultra Fast GPIO Access on STM32F0

The max i can get the gpio to clock is 2.193Mhz. Seams terribly slow You should note this: when you use high level language, you always get slowest speed. For example, if you use this pair: while true do begin GPIOC_ODR.B2 := 0; GPIOC_ODR.B2 := 1; end; You'll get this kind code (you alway can view ...
by HardWareMan
21 Nov 2016 22:17
Forum: User Projects
Topic: Digital I/O on AVR in mikroPascal
Replies: 10
Views: 7836

Re: Digital I/O on AVR in mikroPascal

DDRx := %00110000; <= Input mode where '0', output mode where '1' PORTx := %01010101; <= In output mode set output level, in input mode '1' enables pullup for input pin Temp := PINx; <= Read pin state, whatever it mode is. Just like that: http://savepic.ru/12337548.png If you want one bit - you sho...
by HardWareMan
24 Sep 2016 02:09
Forum: Development Boards
Topic: mikromedia7 for stm32f4
Replies: 5
Views: 4124

Re: mikromedia7 for stm32f4

cheater wrote:Besides of that fact, you wrote that this display can show 262k colors, thats true, but you only connected 16 of the 24 data pins, thats makes the board just displaying 65k of colors! Why have you done that?
Did you ever read the datasheet for SSD1963 LCD controller?
by HardWareMan
29 Jul 2016 16:09
Forum: mikroPascal PRO for ARM General
Topic: Registered as Demo, wonderful
Replies: 7
Views: 7524

Re: Registered as Demo, wonderful

That's why I choose USB dongle.
by HardWareMan
26 Mar 2016 19:11
Forum: mikroPascal PRO for ARM General
Topic: How does application gets execute?
Replies: 2
Views: 3189

Re: How does application gets execute?

C and PIC code in Pascal and ARM thread detected!
by HardWareMan
18 Mar 2016 21:43
Forum: Development Boards
Topic: Very slow TFT loading time mikromedia 7 dev board
Replies: 5
Views: 2955

Re: Very slow TFT loading time mikromedia 7 dev board

In our example we are not using "bit banging". We are writing true the PORTE and PORTG data to the SSD1963 controller 16-bit data. It is bitbanging. And bit grouping can't help to speed up. Ok, you can call it as "PIO" mode. But this microcontrollers has FSMC controller, that allow transfer big amo...
by HardWareMan
10 Mar 2016 17:38
Forum: mikroPascal PRO for ARM General
Topic: Why won't this compile?
Replies: 8
Views: 6705

Re: Why won't this compile?

Indeed. In MikroE Pascal:
SomeThing: is a label (notice color change).
SomeThing : is a case token.
by HardWareMan
09 Mar 2016 14:32
Forum: Development Boards
Topic: Very slow TFT loading time mikromedia 7 dev board
Replies: 5
Views: 2955

Re: Very slow TFT loading time mikromedia 7 dev board

Unfortunately, MikroE Team don't use FSMC for screen controllers, so only bitbang, only hardcore.
by HardWareMan
09 Mar 2016 10:16
Forum: mikroPascal PRO for ARM General
Topic: Why won't this compile?
Replies: 8
Views: 6705

Re: Why won't this compile?

Image
Any questions?
by HardWareMan
03 Mar 2016 13:07
Forum: mikroPascal PRO for ARM General
Topic: Why won't this compile?
Replies: 8
Views: 6705

Re: Why won't this compile?

Your example is OK for me. mPascal for ARM 4.7.1
by HardWareMan
18 Nov 2015 02:16
Forum: mikroPascal PRO for ARM General
Topic: fsmc driver for ARM Pascal (stm32f4)
Replies: 35
Views: 31744

Re: fsmc driver for ARM Pascal (stm32f4)

Six posts above I've posted working source code: http://www.mikroe.com/forum/viewtopic.php?f=189&t=55788&p=264544#p231712 Feel free to use it... :) It's not so hard to read some manuals and write the code... :D Ok, now try to use it, for example, with LCD controller on Mikromedia Plus board. Again:...
by HardWareMan
17 Nov 2015 14:11
Forum: mikroPascal PRO for ARM General
Topic: fsmc driver for ARM Pascal (stm32f4)
Replies: 35
Views: 31744

Re: fsmc driver for ARM Pascal (stm32f4)

FSMC useless with Mikromedia and Mikromedia Plus based on STM32F407. Congratulations Mikroelektronika Team!

Go to advanced search