Search found 7 matches

by Dawn
25 Dec 2010 03:53
Forum: mikroC PRO for AVR Wish List
Topic: JTAG Debugging support with JTAGICE inMikroc
Replies: 3
Views: 3678

JTAG Debugging support with JTAGICE inMikroc

I would consider the missing support of the major debuggers like JTAGICE MKII a feature your otherwise brilliant software definately needs. Currently, I am trying the AVR Studio "workaround" with only marginal success. the disassembed file reacts totally different than the actual program without deb...
by Dawn
25 Dec 2010 02:27
Forum: mikroPascal PRO for AVR Wish List
Topic: JTAG debug?
Replies: 14
Views: 11743

Re: JTAG debug?

In my view, you should reconsider implementing JTAG debugging with JTAGICE MKII into your otherwise brilliant software. I am currently dearly missing that function as AVR Studio seems to disassemble strange call-statements that do not appear during the normal function and which lets the program cont...
by Dawn
18 Dec 2010 01:13
Forum: mikroC PRO for AVR General
Topic: two interrupts trigger the same function
Replies: 1
Views: 1182

two interrupts trigger the same function

Heyhey,

i am currently concerned with the following problem: could you program two interrupts (e.g. timer and external) to trigger the same function? Would something like this work?

void somefunction() iv IVT_TIMER iv IVT_EXTERNAL {dosomething}

Best regards,
Dawn
by Dawn
23 Nov 2009 07:50
Forum: mikroC PRO for AVR General
Topic: Another UART-Related Issue
Replies: 2
Views: 2022

you're right, when I opened my project in the new verion, I could see an additional parenthesis that caused the error. Deleting it helped...
by Dawn
22 Nov 2009 22:46
Forum: mikroC PRO for AVR General
Topic: Another UART-Related Issue
Replies: 2
Views: 2022

Another UART-Related Issue

Hey, I'm trying to get the second UART-Module of an ATMEGA64 up and running. (Pins D2, D3 --> RXD1, TXD1). A sample code I found at the PIC-section but should also be fine for atmel, is as follows: void main(){ UART1_Init(9600); // initialize UART1 module UART2_Init(9600); // initialize UART2 module...
by Dawn
11 May 2009 16:02
Forum: mikroC PRO for AVR General
Topic: Sending content of variable via UART
Replies: 1
Views: 2206

Found it myself. Converting the integer to a string of ASCII-Chars before sending is logical in retrospect... :) (Conversion library -->InttoStr)
by Dawn
09 May 2009 15:43
Forum: mikroC PRO for AVR General
Topic: Sending content of variable via UART
Replies: 1
Views: 2206

Sending content of variable via UART

Hi guys, At the moment, I'm desperatly trying to send an ADC-Value via USART to my PC. void main() { UART1_Init(9600); Delay_ms(100); while (1) { UART1_Write('1'); Delay_ms(100); LED_ON(); Delay_ms(10); ein1=ADC_Read(1); ein2=ADC_Read(2); ein3=ADC_Read(3); LED_OFF(); Delay_ms(10); aus1=ADC_Read(1); ...

Go to advanced search