Search found 45 matches

by Carlos L R
21 Sep 2014 09:35
Forum: mikroPascal PRO for ARM General
Topic: New Update
Replies: 3
Views: 2402

Re: New Update

I guess is clear that software is no more on devopment, they wana sell hardware only, Sam ehappen for 8051 compiler
by Carlos L R
10 Sep 2013 06:04
Forum: mikroPascal PRO for ARM Wish List
Topic: New CPU support Can be done ?
Replies: 3
Views: 6686

New CPU support Can be done ?

I would like to use the ADUC7060 Arm CPU, that is not yet supported by pascal compiler , my question is . It's possible to make the support files miself, or is a impossible task that needs internal compiler info, or is a list off register and memories variables definition that can be done,with a bet...
by Carlos L R
10 Sep 2013 06:04
Forum: mikroPascal PRO for ARM Wish List
Topic: New CPU support Can be done ?
Replies: 3
Views: 6521

New CPU support Can be done ?

I would like to use the ADUC7060 Arm CPU, that is not yet supported by pascal compiler , my question is . It's possible to make the support files miself, or is a impossible task that needs internal compiler info, or is a list off register and memories variables definition that can be done,with a bet...
by Carlos L R
25 Aug 2013 05:16
Forum: mikroPascal PRO for ARM General
Topic: How make LED Blinking with STM32L??
Replies: 9
Views: 6481

Re: How make LED Blinking with STM32L??

program LedBlinking; { Declarations section } Var i : dword; begin { Main program } GPIO_Digital_Output(@GPIOB_BASE, _GPIO_PINMASK_ALL); // Set PORTB as digital output while TRUE do begin VDelay_ms( 200 ); GPIOB_ODR.B6 := not GPIOB_ODR.B6; // Toggle PORTB GPIOB_ODR.B7 := not GPIOB_ODR.B6; // Toggle ...
by Carlos L R
25 Aug 2013 05:15
Forum: mikroPascal PRO for ARM General
Topic: How make LED Blinking with STM32L??
Replies: 9
Views: 6481

Re: How make LED Blinking with STM32L??

Try this config on your Project Configuration registers.

Works well on STM32L discover

RCC_CR :$400FE060 : 0x00000001
RCC_CFGR :$400FE070 : 0x06500001
SVCORE :$400FE070 : 0x00000002
by Carlos L R
25 Aug 2013 05:11
Forum: mikroPascal PRO for ARM General
Topic: ARM C objects can they install into mikroPascal for ARM
Replies: 7
Views: 4221

Re: ARM C objects can they install into mikroPascal for ARM

This may help you make a bridge between C lib and Mikroe Pascal



asm

block of assembly instructions


end;
by Carlos L R
24 Aug 2013 22:10
Forum: mikroPascal PRO for ARM General
Topic: A Litle error in Help
Replies: 10
Views: 5229

Obvius marketing decision

Is correct but not helpfull

And the intent for help is to help, not to be correct, If is correct but don't help, means unhappy customers,

that's the point
by Carlos L R
24 Aug 2013 14:20
Forum: mikroPascal PRO for ARM General
Topic: HT1621 controling 4 digits 7 segment in pascal
Replies: 1
Views: 2640

HT1621 controling 4 digits 7 segment in pascal

To anybody that may need to use this controler Used on discover ST32L board, tested and working well Regards Carlos L R 3dgeekstore program HT2621B_; { Declarations section } var CS_H : sbit at GPIOB_ODR.B13; var WR_H : sbit at GPIOB_ODR.B15; var DATA_H : sbit at GPIOB_ODR.B14; var k : word; const S...
by Carlos L R
23 Aug 2013 04:11
Forum: mikroC PRO for PIC General
Topic: Should this be done with an array?
Replies: 8
Views: 2684

Re: Should this be done with an array?

Why not

PORTD.RD0 = LED_1
PORTD.B1 = LED_2

More simple
by Carlos L R
22 Aug 2013 11:52
Forum: mikroPascal PRO for ARM General
Topic: A Litle error in Help
Replies: 10
Views: 5229

Re: A Litle error in Help

22 in Decimal isn't 34 in BCD

BCD means binary coded in decimal, that is use to convert in two 4bit sets,

22 in BCD is also 22

0010 0010
2 2

Check because this is a BCD converter not a HEX converter
by Carlos L R
22 Aug 2013 02:53
Forum: mikroPascal PRO for ARM General
Topic: A Litle error in Help
Replies: 10
Views: 5229

A Litle error in Help

The example is incorrect

The b value must be 22 not 34

or the variable a must be 0X22 instead off only 22
by Carlos L R
21 Aug 2013 23:05
Forum: mikroC PRO for PIC General
Topic: Conversion
Replies: 3
Views: 1426

Re: Conversion

UART_Read_Text

Prototype procedure UART_Read_Text(var output, delimiter : string; Attempts : byte);
by Carlos L R
21 Aug 2013 23:00
Forum: mikroPascal PRO for ARM General
Topic: Bit manipulation
Replies: 3
Views: 2781

Re: Bit manipulation

Thanks This helps But I would like to know a way to use a index to select the right bit. Supose I define var Pixels_001 : sbit at Pixels1.0; var Pixels_002 : sbit at Pixels1.1; var Pixels_003 : sbit at Pixels1.2; var Pixels_004 : sbit at Pixels1.3; var Pixels_005 : sbit at Pixels1.4; var Pixels_006 ...
by Carlos L R
21 Aug 2013 03:17
Forum: mikroPascal PRO for ARM General
Topic: Bit manipulation
Replies: 3
Views: 2781

Bit manipulation

I need to manipulate a set of 128 bits But I can't define a var with a array of bits, same for record due to mikroe compiler restrictions. Due to this I'm working with a string off 128 bytes , all fill with 0 or 1, if i want the bit set or not. I feel that this way is very uneficient. It's possible ...
by Carlos L R
12 Aug 2013 12:54
Forum: User Projects
Topic: Multiplexing seven segment displays
Replies: 9
Views: 9915

Re: Multiplexing seven segment displays

Regarding switch(y), means that you want to make a selection based on the value off y, nad latter you tell what todo for each case off Y value

Go to advanced search