Search found 32 matches

by outlawstc
Wed Apr 13, 2016 5:10 am
Forum: Flowcode V6
Topic: Halifax Training Classes
Replies: 6
Views: 5301

Re: Halifax Training Classes

Hello Matrix team, I'm curious to if there has been any more thought on this situation?
by outlawstc
Wed Apr 13, 2016 5:08 am
Forum: Flowcode V6
Topic: USB Serial
Replies: 8
Views: 6924

Re: USB Serial

Thanks for the update :)
by outlawstc
Sat Nov 07, 2015 5:58 pm
Forum: Flowcode V6
Topic: USB Serial
Replies: 8
Views: 6924

Re: USB Serial

Right but how am i as a buyer buying the product supposed to know that there are these limitations for the components shown to be available in the software during demo. Here was my experience... I bought the 120us dollar chip pack thinking I was gonna get access to all the functions for the AVR chip...
by outlawstc
Sat Nov 07, 2015 1:18 am
Forum: Flowcode V6
Topic: USB Serial
Replies: 8
Views: 6924

Re: USB Serial

So what about a atmega16U2.. it has built in usb serial but they did not make the AVR chip pack capable!! So I guess this means for me i have to implement the configuration in C.. Or Buy the PIC Chip Pack. I love and hate this product in the same sentence.
by outlawstc
Fri Nov 06, 2015 6:27 pm
Forum: Flowcode V6
Topic: USB Serial
Replies: 8
Views: 6924

USB Serial

Hello,
Im trying to understand how this component works?? It shows no Pin configuration options in the properties window.. So how is it assigned as a serial macro to perform a transmission on a undefined pin?
by outlawstc
Fri Jun 19, 2015 11:42 pm
Forum: General Programming
Topic: Editing *.fcpx component files
Replies: 2
Views: 3444

Re: Editing *.fcpx component files

Figured this would be a general question for flowcode not fully directed toward version 6
by outlawstc
Thu Jun 18, 2015 2:19 pm
Forum: General Programming
Topic: Editing *.fcpx component files
Replies: 2
Views: 3444

Editing *.fcpx component files

Anyone have any good resources for this? What if i want to make my Spi component more capable at controlling the spi registers.
by outlawstc
Thu Jun 18, 2015 2:05 pm
Forum: General Programming
Topic: SPI comms Question
Replies: 1
Views: 2685

SPI comms Question

I am trying to program a atmega328p to control a AD9850 DDS chip...
Matrix program does not have the settings to choose LSB first or MSB first for transmission.. how do i go about setting this register.. Ive tried to set it with a implement C code macro with no luck... any suggestions..
by outlawstc
Sun Feb 15, 2015 2:43 am
Forum: Flowcode V6
Topic: Halifax Training Classes
Replies: 6
Views: 5301

Re: Halifax Training Classes

Hello Matrix team, I'm curious to if there has been any more thought on this situation?
by outlawstc
Tue Aug 05, 2014 3:41 am
Forum: Flowcode V6
Topic: Halifax Training Classes
Replies: 6
Views: 5301

Halifax Training Classes

I see in the July 2014 email from matrix they mention that there are training classes available on location.. I myself live In the US and do not have the finance nor the time to travel.. Would it be possible to Have a Camera crew Film the training classes and you could post them online so people who...
by outlawstc
Fri Jul 04, 2014 5:26 pm
Forum: Feature requests
Topic: Halifax Training Classes
Replies: 0
Views: 2015

Halifax Training Classes

I see in the July 2014 email from matrix they mention that there are training classes available on location.. I myself live In the US and do not have the finance nor the time to travel.. Would it be possible to Have a Camera crew Film the training classes and you could post them online so people who...
by outlawstc
Wed Jun 11, 2014 8:49 pm
Forum: Flowcode V6
Topic: Spi simulation on data scope help
Replies: 4
Views: 3043

Re: Spi simulation on data scope help

Ben, I tried what you said and it worked with getting channel one operable Another thing I think i should mention is for some reason one of the settings for spi seems backwards the clock phase trailing and leading edge selection.. when you set it to leading edge it writes binary on the falling edge ...
by outlawstc
Tue Jun 10, 2014 1:26 pm
Forum: Flowcode V6
Topic: Spi simulation on data scope help
Replies: 4
Views: 3043

Re: Spi simulation on data scope help

Oh ok gotcha. On a side note i spent a while yesterday trying to get the SPI to work on the arduino uno.. For some odd reason when you have it set to a CH it does not work. but when you set it to software it does.. Isnt CH setting preset choices for the pins used to match the pins that the micro con...
by outlawstc
Mon Jun 09, 2014 10:12 pm
Forum: Flowcode V6
Topic: Spi simulation on data scope help
Replies: 4
Views: 3043

Spi simulation on data scope help

Trying to get spi component to show up on the data scope.. Data scope loads the channels when the spi component is added to the system panel.. But for some odd reason the data scope does not simulate the data being transmitted.. im only trying to transmit info not recieive in response Any help would...
by outlawstc
Sun Jun 08, 2014 10:06 pm
Forum: Flowcode V6
Topic: BitRead Function
Replies: 2
Views: 2840

Re: BitRead Function

I brought this over to there topic just to make it simple on others who may seek the same answer.. Thanks again medelec35 For my 2 pence worth. How I check is a bit is set or clear: (Variable & (1 << bit)) <> 0 // to Check if bit of variable is set or (Variable & (1 << bit)) = 0 // to Check if bit o...
by outlawstc
Sun Jun 08, 2014 9:44 pm
Forum: Flowcode V6
Topic: BitRead Function
Replies: 2
Views: 2840

BitRead Function

Arduinos program has A bitread function..
How do you perform this task in flowcode?

http://arduino.cc/en/Reference/BitRead
by outlawstc
Sun Jun 08, 2014 5:21 pm
Forum: Flowcode V6
Topic: Flowcode applied to a TLC5940 16 channel 12 bit pwm
Replies: 0
Views: 1739

Flowcode applied to a TLC5940 16 channel 12 bit pwm

I am working on using flowcode to create a program to control a TLC5940 16 channel pwm Using a 8 bit atmega 328 micro controller Some of the objectives in this project... programming a 8mhz clock out of the micro controller to send to the grayscale counter of the TLC5940 - completed programing a 512...
by outlawstc
Sun Jun 08, 2014 5:11 pm
Forum: Flowcode V6
Topic: Custom timer interrupts
Replies: 3
Views: 2895

Re: Custom timer interrupts

Im using a AVR atmega328p in this project.. Im more familiar with programming the output compare registers which cause interrupt routines at the clock count desired.. I thought that doing a normal prescale interrupt provided by flowcode would cause innaccuracies with timing if you were to apply some...
by outlawstc
Sun Jun 08, 2014 1:52 am
Forum: Flowcode V6
Topic: Custom timer interrupts
Replies: 3
Views: 2895

Re: Custom timer interrupts

I also understand how I can count via interrupts from the prescale setup of timer interrupt but is that accurate? I will try that to see how accurate it is..
by outlawstc
Sun Jun 08, 2014 1:34 am
Forum: Flowcode V6
Topic: Custom timer interrupts
Replies: 3
Views: 2895

Custom timer interrupts

I'm trying to set up some custom timers for controlling a TLC5940 16 channel pwm chip.. There isnt really any info at all on how to set it up.. i understand how to set up timers in normal C programming Think is I really feel that the timer interrupt part of the program is under developed and could b...
by outlawstc
Sat Jun 07, 2014 11:07 pm
Forum: Flowcode V6
Topic: atmega328 Fuses
Replies: 0
Views: 1693

atmega328 Fuses

I have a arduino uno which im wanting to be able to apply the CLKO with.. Ive learned that the project options/ configure tab when the target is the arduino uno PDIP does not offer any option for changing things such as fuse settings.. Also i have learned that When selecting the atmega 328p target I...
by outlawstc
Fri May 23, 2014 1:10 am
Forum: Flowcode V6
Topic: Problems with analog simulation using arduino mega 2560
Replies: 3
Views: 3109

Re: Problems with analog simulation using arduino mega 2560

This problem occurs with the arduino1280 , arduino mega 2560 adk, and arduino mega 2560 from the ones i have checked... A simple way to work around this for now is to select the chips from the AVR atmega list and not the arduino list.
by outlawstc
Thu May 22, 2014 10:36 pm
Forum: Flowcode V6
Topic: Problems with analog simulation using arduino mega 2560
Replies: 3
Views: 3109

Re: Problems with analog simulation using arduino mega 2560

This is a software bug and not a bug in my flowchart
by outlawstc
Thu May 22, 2014 7:06 pm
Forum: Flowcode V6
Topic: Problems with analog simulation using arduino mega 2560
Replies: 3
Views: 3109

Problems with analog simulation using arduino mega 2560

I am having problems with simulating the arduino mega 2560 analog channels.. I set it up with the regular potentiometer set to channel 0 Then i make a int called Pot1 I use the Getint macro The simulation debugger will only return 0 at any setting of the simulated pot I open op the Analog input wind...
by outlawstc
Fri Jan 17, 2014 6:50 pm
Forum: Flowcode V6
Topic: Capacitive touch with a external perphial controller
Replies: 1
Views: 2107

Capacitive touch with a external perphial controller

A while back ago I was looking into creating a capacitive touch control panel for a project.. I thought I would share this because it seems most tend to want to figure out how to make a micro controller perform capacitive touch sensing with the micro controller itself.. From my reading it would seem...