Search found 7 matches

by Nameless
05 Nov 2010 12:50
Forum: User Projects
Topic: anyone wanna help Beta testing 16F Disassembler/Interpreter?
Replies: 0
Views: 1175

anyone wanna help Beta testing 16F Disassembler/Interpreter?

i wrote a simple Mid-Range Family Disassembler/Interpreter, i was hoping anyone can give me a hand beta testing before releasing??

cheers;
by Nameless
22 Jul 2010 16:36
Forum: mikroC General
Topic: is there a PIN Array by default?
Replies: 5
Views: 2060

Re: is there a PIN Array by default?

im not sure if ur answer is even close to my question :!:

i need a loop to go through all pins, and set the leds connected to them either to on or off
by Nameless
22 Jul 2010 03:03
Forum: mikroC General
Topic: is there a PIN Array by default?
Replies: 5
Views: 2060

Re: is there a PIN Array by default?

thank you for ur reply
but i meant writing to pins, like light a LED on a pin or turn it off
by Nameless
21 Jul 2010 16:29
Forum: mikroC General
Topic: is there a PIN Array by default?
Replies: 5
Views: 2060

is there a PIN Array by default?

is there any quick way to access PINs except doing each on its owen? like for (i = 0; i < 6; i++) RB _bit = 0xFF; ? insted of RB[1]_Bit = 0xFF; RB[2]_Bit = 0xFF; RB[3]_Bit = 0xFF; RB[4]_Bit = 0xFF; RB[5]_Bit = 0xFF; ........ i also tried to make a function to do that for me but i couldnt decalre a b...
by Nameless
20 Jul 2010 21:53
Forum: mikroC PRO for PIC General
Topic: Help Reading PIN State
Replies: 8
Views: 12461

Re: Help Reading PIN State

intersting
just gotta read it like 50 times more to understand it :D

thanks again, i really appreciate ur help man :D
by Nameless
20 Jul 2010 21:31
Forum: mikroC PRO for PIC General
Topic: Help Reading PIN State
Replies: 8
Views: 12461

Re: Help Reading PIN State

@kada200 : thanks for the extra info, i really liked that extra stuff, it worked :D with some part of tihomir.losic's code @tihomir.losic : thanks alot :D it works! cheers; ADCON1 = 0x07; // Configure AN pins as digital I/O CMCON = 0x07; // Disable comparators TRISC0_bit = 1; // set RB0 pin as input...
by Nameless
19 Jul 2010 21:40
Forum: mikroC PRO for PIC General
Topic: Help Reading PIN State
Replies: 8
Views: 12461

Help Reading PIN State

im totally new to this world, i got 16F877A, and tried to mod the LEDs example provided with mikroC but Failed to Read PORTA.RA0 State :( void main() { ANSEL = 0; // Configure AN pins as digital ANSELH = 0; C1ON_bit = 0; // Disable comparators C2ON_bit = 0; TRISA = 0xFF; // set direction to be input...

Go to advanced search