Search found 4 matches

by ivan
Mon Mar 24, 2008 1:01 pm
Forum: Components (Comms)
Topic: how to implement FLOWCODE rs232 parity bit on pic
Replies: 3
Views: 5042

Re: how to implement FLOWCODE rs232 parity bit on pic

I used this and work perfect for even parity check if someone need //c icon set_bit(txsta,TX9); //at program start and before transmit set B=mydata after //c icon FCV_B=((((((FCV_B)^(((FCV_B)<<4)|((FCV_B)>>4)))+0x41)|0x7C)+2)&0x80);// check if B have parity or not and place result on bit 7 of B dela...
by ivan
Sat Mar 22, 2008 12:34 am
Forum: Components (Comms)
Topic: how to implement FLOWCODE rs232 parity bit on pic
Replies: 3
Views: 5042

how to implement FLOWCODE rs232 parity bit on pic

HI team
I need to send some data by using "9600 8 E 1"
parity "even"(I'm using 16f628a for send some data to a bmw intrument cluster)
how you suggest to implement in flowcode by using a simply step?

thanks
by ivan
Sun Feb 17, 2008 1:39 pm
Forum: Flowcode V2 & V3
Topic: Variant to usual components in PIC designs
Replies: 6
Views: 5015

Re: Variant to usual components in PIC designs

hi
if you look also at pdf files of E-Blocks there is a fully schematics very useful for some components wich connection are not desc. in help files
by ivan
Fri Feb 15, 2008 8:54 pm
Forum: Flowcode V2 & V3
Topic: use the ports register for decisions and calculations
Replies: 1
Views: 1951

use the ports register for decisions and calculations

hi to all
just an info
do you plan to make possibile direct use of ports register as input for decisions and calculations?
this may be great so we can use like a bit of a port to activate calculate instead of copy a port to a variabile and use them