Search found 20 matches

by asbase
Thu May 12, 2016 7:02 am
Forum: Flowcode V5 Issues
Topic: 18F887 UART - MAX 485 - USB RS485 - PC PROBLEM
Replies: 4
Views: 9199

Re: 18F887 UART - MAX 485 - USB RS485 - PC PROBLEM

Simple LED Flashing work in fc5 but not in real hardware
by asbase
Tue Apr 26, 2016 3:01 am
Forum: Flowcode V5 Issues
Topic: 18F887 UART - MAX 485 - USB RS485 - PC PROBLEM
Replies: 4
Views: 9199

18F887 UART - MAX 485 - USB RS485 - PC PROBLEM

Hello, my 887 waiting data to be input from pc, after input then re output again to pc terminal(realterm) but the output length always short by 2 byte. please help.

Thank you.
by asbase
Tue Feb 02, 2016 7:53 am
Forum: Flowcode V5
Topic: one wire reading 64bit laser rom
Replies: 1
Views: 4653

one wire reading 64bit laser rom

Anybody can give me a flowcode example how to read the dallas 1820 64bit laser rom number? Thanks in advance.
by asbase
Wed Oct 02, 2013 12:54 pm
Forum: Flowcode V5
Topic: PICKIT 2 ICD
Replies: 2
Views: 2571

Re: PICKIT 2 ICD

May I know if I going to do debugger in flowcode for pic, the only way is getting the flowkit or eb006?
by asbase
Thu Sep 26, 2013 1:56 pm
Forum: Flowcode V5
Topic: PICKIT 2 ICD
Replies: 2
Views: 2571

PICKIT 2 ICD

Is it possible to use pickit 2 as flowcode icd debugger?
by asbase
Wed Sep 25, 2013 2:06 pm
Forum: Flowcode V5
Topic: Port Pin Toggle
Replies: 10
Views: 8044

Re: Port Pin Toggle

Hello asbase, I tried your program in hardware using a different micro and it works just like in simulation. You have the switches set for active high so each will need a pull down resistor, I usually use 4.7k to 10k ohm. Could you double check your wiring, configuration settings and clock speed. I...
by asbase
Mon Sep 23, 2013 4:12 am
Forum: Flowcode V5
Topic: Port Pin Toggle
Replies: 10
Views: 8044

Re: Port Pin Toggle

first you have to turn off the analog selects, then use tris to make pin output, then use toggle like this, this is just to toggle b0 pin, with out any other pins accounted for anselb=0;// disable bport analog module trisb&=~(1<<0);// set b0 as output latb&=~(1<<0);// set b0 as low while(1){ latb^=...
by asbase
Mon Sep 23, 2013 4:10 am
Forum: Flowcode V5
Topic: Port Pin Toggle
Replies: 10
Views: 8044

Re: Port Pin Toggle

This one also not working as simulator in the real hardware. First of all, it can turn off but cannot turn off without go into another switch. Please comment.
Thanks.
by asbase
Sat Sep 21, 2013 3:32 pm
Forum: Flowcode V5
Topic: Phoneme Speech
Replies: 1
Views: 2264

Phoneme Speech

I am very interest in phoneme programming after try out the hello example. Can someone able to guide me how to convert English word to phoneme for flowcode speech purpose.

Thanks.
by asbase
Sat Sep 21, 2013 3:29 pm
Forum: Flowcode V5
Topic: Port Pin Toggle
Replies: 10
Views: 8044

Port Pin Toggle

Please advice

While 1
portb.0=!portb.0
delay 100ms
end while

portb.0 connect to led.

flowcode simulator work but real hardware fail.

Thanks.
by asbase
Mon Mar 04, 2013 5:06 pm
Forum: Flowcode V5
Topic: Connection Point
Replies: 1
Views: 1864

Connection Point

I put a connection point label "A" at my main program and I try to jump out from my timer interrupt subroutine by jump to the connection point "A". The problem is I can't get the connection label "A" in the jump to connection point list box.
Please advice
by asbase
Fri Aug 31, 2012 6:59 am
Forum: Flowcode V5
Topic: 16f887 mclr re3
Replies: 5
Views: 4449

16f887 mclr re3

I set the above re3to digital input in config setting but found that i still can get the pin for extra connection in any output connection. Any update?
by asbase
Fri Aug 31, 2012 1:46 am
Forum: Flowcode V5
Topic: ccs & picbasic pro
Replies: 1
Views: 1960

ccs & picbasic pro

Is it possible to intergrate ccs or picbasic pro with flowcode v5?
by asbase
Fri Aug 31, 2012 1:15 am
Forum: Flowcode V5
Topic: code protection and other protection method.
Replies: 7
Views: 6044

Re: code protection and other protection method.

Preciously I do developed a system using pic16f877a in 2005. The software store in pic16f877a with code protection bit on being cracked and read out in China. They managed to rebuilt all the system and resell it in the market. I looking for a more secure way to protect the software.
by asbase
Fri Aug 31, 2012 12:51 am
Forum: Flowcode V5
Topic: code protection and other protection method.
Replies: 7
Views: 6044

code protection and other protection method.

Pleased advice for protection control from illegal use.

Using:
1. Code protection bit?
2. Using dallas one wire laser print serial number?
3. Eeprom data verification.
4. .....

Please advice the best and safety protection way from being crack and used.

Thanks.
by asbase
Wed Aug 29, 2012 11:13 am
Forum: Flowcode V5
Topic: 16f88 / 16f628 int b0 with 7segment on port b
Replies: 6
Views: 4505

16f88 / 16f628 int b0 with 7segment on port b

I connect a button to int b0 for interrupt and 4 digit 7 segment led on b1-b7 for segment a-g and leave dot segment unconnect.
I found the flowcode simulator work properly but not in real hardware. Please advice.
by asbase
Thu Aug 16, 2012 12:24 pm
Forum: Flowcode V5
Topic: PORT INTERRUPT in flowcode v5.4
Replies: 9
Views: 5763

Re: PORT INTERRUPT in flowcode v5.4

i use single pin mode, 16f682a, 16f887....failed...
by asbase
Thu Aug 16, 2012 12:14 pm
Forum: Flowcode V5
Topic: PORT INTERRUPT in flowcode v5.4
Replies: 9
Views: 5763

Re: PORT INTERRUPT in flowcode v5.4

proteus and real pic simulator and also real hardware.
Simulator in flowcode work, other failed.
by asbase
Thu Aug 16, 2012 7:12 am
Forum: Flowcode V5
Topic: PORT INTERRUPT in flowcode v5.4
Replies: 9
Views: 5763

PORT INTERRUPT in flowcode v5.4

When I using the port int macro on portb.4 and output a led on port b.0, 1, 2, 3 or other portb pin beside portb.4, the int portb.4 will become not function. My software need to using two pin for interrupt, portb.0 (int0 int) and portb.4(port int). Previously I be using ccs to done this project and ...