Wish List | Arduino Compatible Compiler for LabVIEW Discussions | Forum

Avatar
Please consider registering
guest
sp_LogInOut Log In sp_Registration Register
Register | Lost password?
Advanced Search
Forum Scope


Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
sp_Feed Topic RSS sp_TopicIcon
Wish List
March 22, 2015
12:23 pm
Avatar
John
Member
Members
Forum Posts: 18
Member Since:
March 19, 2015
sp_UserOfflineSmall Offline

Hello,

Starting this topic to assist the developing team in what features the community likes to have.

My wish is to get a comparable alternative to the Arduino IDE, if possible.

Please give a reply with your wishes for this product.

Regards, John

March 22, 2015
1:01 pm
Avatar
John
Member
Members
Forum Posts: 18
Member Since:
March 19, 2015
sp_UserOfflineSmall Offline

My wishes:

  1. Add a feature that allows to incorporate/combine existing Arduino Libraries into the LabView environment.
  2. Manipulate microprocessor registers. (Bitwise, Bytewise, Short, Long, ..)
  3. SPI, I2C, CAN support. (Due, CAN0 & CAN1 port)
  4. Make parallel loops available. (If possible according to the resources available depending on microprocessor)

Thanks, John

March 22, 2015
3:31 pm
Avatar
viwoi
Member
Members
Forum Posts: 16
Member Since:
March 19, 2015
sp_UserOfflineSmall Offline

since the parallel loops behaviour is not possible on one threaded controller, probably a kind of scheduler could run behind the code, which allows using of a certain number of loops (let's say 4 or 6).

March 22, 2015
3:59 pm
Avatar
John
Member
Members
Forum Posts: 18
Member Since:
March 19, 2015
sp_UserOfflineSmall Offline

Hello Viwoi,

Yes, you need some overhead (small scheduler) but 4-6 loops is already a good start. Perhaps only two for smaller targets.

Regards, John

March 22, 2015
4:25 pm
Avatar
filipealtoe
Admin
Forum Posts: 98
Member Since:
March 12, 2015
sp_UserOfflineSmall Offline

John;

Thanks for starting this discussion. It will be certainly very useful for us. I will be recording the incoming suggestions from the community to our list of features for next releases.

Thanks again.

Filipe

Cheers
Filipe

March 22, 2015
5:53 pm
Avatar
RTSLVU
Member
Members
Forum Posts: 21
Member Since:
March 20, 2015
sp_UserOfflineSmall Offline

A call library node that allows use of the numerous Arudino shields with libraries

Automatically include the lib in the build.

March 22, 2015
7:43 pm
Avatar
Steffan
Admin
Forum Posts: 408
Member Since:
March 12, 2015
sp_UserOfflineSmall Offline

As far as multi-threading goes, since AVR does not support hardware multi-threading and is meant for simpler applications, it is best to treat these as single loop interrupt driven systems.  We do support pin interrupts with callbacks and timer interrupts are on the roadmap.  This is usually sufficient for these types of systems.  Since the Due supports hardware multi-threading, this is the architecture we would most likely have a chance at implementing a decent scheduler.

Other items listed above that are on the roadmap include SPI, I2C, and CAN.

Providing a generic interface to libs is very tricky.  At this time we will be manually adding support for libraries based on priority. 

Thanks for the suggestions.

March 24, 2015
1:30 pm
Avatar
GLeMunyan
Member
Members
Forum Posts: 7
Member Since:
March 24, 2015
sp_UserOfflineSmall Offline

I2C and SPI are on the top of my wish list. Yesterday I posted on LinkedIn and Filipe pointed out I had a misunderstanding about being able to see the block diagrams and suggested I come here.

Already though this is WAY better way to program Arduino. 

March 24, 2015
1:39 pm
Avatar
filipealtoe
Admin
Forum Posts: 98
Member Since:
March 12, 2015
sp_UserOfflineSmall Offline

Hi Greg;

You found us. Smile

Welcome. We are capturing the feedback from the community and, yes, SPI and I2C are quickly climbing the ranks. I do too like this way to program Arduinos better; but, then again, I am a little biased as a LabVIEW enthusiast.

Filipe

Cheers
Filipe

March 25, 2015
6:59 pm
Avatar
John
Member
Members
Forum Posts: 18
Member Since:
March 19, 2015
sp_UserOfflineSmall Offline

Steffan said
As far as multi-threading goes, since AVR does not support hardware multi-threading and is meant for simpler applications, it is best to treat these as single loop interrupt driven systems.  We do support pin interrupts with callbacks and timer interrupts are on the roadmap.  This is usually sufficient for these types of systems.  Since the Due supports hardware multi-threading, this is the architecture we would most likely have a chance at implementing a decent scheduler.

Other items listed above that are on the roadmap include SPI, I2C, and CAN.

Providing a generic interface to libs is very tricky.  At this time we will be manually adding support for libraries based on priority. 

Thanks for the suggestions.

 For the smaller Arduino's the timer interrupts option is a nice option to have small tasks beside the main loop. Combined with a case structure inside the timer interrupt, you can consider the Uno as a "serial interrupt based multi-tasking mainframe" ;-) .

For the Due (and other future platforms) a decent scheduler and multi-threading will make this Compiler a serious contender in the Arduino world.

The roadmap looks ok to me, perhaps the WatchDog is easy to include....? (first the other stuff)

About "interface to libs" ; what is the difficulty you face , and can we help to find solutions? 

Regards,

John

March 25, 2015
8:10 pm
Avatar
John
Member
Members
Forum Posts: 18
Member Since:
March 19, 2015
sp_UserOfflineSmall Offline

Interface to libs,

Perhaps something like Matlab Script node ?

Matlab ScriptImage Enlarger

April 8, 2015
7:15 pm
Avatar
John
Member
Members
Forum Posts: 18
Member Since:
March 19, 2015
sp_UserOfflineSmall Offline

Steffan said
As far as multi-threading goes, since AVR does not support hardware multi-threading and is meant for simpler applications, it is best to treat these as single loop interrupt driven systems.  We do support pin interrupts with callbacks and timer interrupts are on the roadmap.  This is usually sufficient for these types of systems.  Since the Due supports hardware multi-threading, this is the architecture we would most likely have a chance at implementing a decent scheduler.

The timer interrupts are a good "multi-threading" alternative for the Atmel AVR hardware.

Can we use the whole 32 bits usec range, from 1us to 4294.967295sec ?

Good job!

April 8, 2015
7:25 pm
Avatar
Steffan
Admin
Forum Posts: 408
Member Since:
March 12, 2015
sp_UserOfflineSmall Offline

Thats a good question and should have been specified in the documentation (will be added).  The underlying library automatically adjusts the timer prescaler based on the input period.  The minimum period or highest frequency this library supports is 1 microsecond or 1 MHz. The maximum period is 8388480 microseconds or about 8.3 seconds.

April 11, 2015
11:50 am
Avatar
Leifson
Karlstad, Sweden
New Member
Members
Forum Posts: 1
Member Since:
April 11, 2015
sp_UserOfflineSmall Offline

First of all, thanks for a really nice product!

In future versions I'd be happy to see support for clusters. I know the current reason for not supporting them is due to memory considerations, but I feel that it can't be impossible to solve, right?
I mean, I can certainly use structs in C /C++ on Arduino so with an efficient compiler that maps the cluster usage to similar constructs as in C the memory impact shouldn't be that large?

One more thing that I think would be very nice is to be able to debug my code. Without this possibility we would never be able to make any complex Arduino programs using LabVIEW.
I own an AVR Dragon that is capable of debugging the Arduino via debugwire if I'm developing C with the AVR toolchain. Wouldn't it be at least theoretically possible to extend the LabVIEW IDE and your compiler with the same ability?

/Leif

--- There are only 10 kinds of people in the world, those who understand binary and those who don't.---

April 22, 2015
9:36 am
Avatar
koji_ohashi
Member
Members
Forum Posts: 3
Member Since:
April 21, 2015
sp_UserOfflineSmall Offline

Thank you for very nice product!
For now, my wish is Pro/ Pro mini 3.3V 8MHz support.
It will help to communicate with 3.3V I2C sensors.

April 22, 2015
2:47 pm
Avatar
Steffan
Admin
Forum Posts: 408
Member Since:
March 12, 2015
sp_UserOfflineSmall Offline

koji_ohashi said
Thank you for very nice product!
For now, my wish is Pro/ Pro mini 3.3V 8MHz support.
It will help to communicate with 3.3V I2C sensors.

Actually, this is already supported.  Under the Tools>Board menu for the Pro Mini, there are 4 variants.  The 8 Mhz variants are the 3.3V models.

ProMini.pngImage Enlarger

sp_PlupAttachments Attachments
April 24, 2015
12:14 am
Avatar
koji_ohashi
Member
Members
Forum Posts: 3
Member Since:
April 21, 2015
sp_UserOfflineSmall Offline

Steffan said

koji_ohashi said
Thank you for very nice product!
For now, my wish is Pro/ Pro mini 3.3V 8MHz support.
It will help to communicate with 3.3V I2C sensors.

Actually, this is already supported.  Under the Tools>Board menu for the Pro Mini, there are 4 variants.  The 8 Mhz variants are the 3.3V models.

ProMini.pngImage Enlarger

Thanks.
It worked well on Pro Mini 3.3V 8MHz.
Also worked on the ATmega328 with bootloader(8MHz internal clock).
Great!

April 26, 2015
7:33 pm
Avatar
John
Member
Members
Forum Posts: 18
Member Since:
March 19, 2015
sp_UserOfflineSmall Offline

Steffan said
Thats a good question and should have been specified in the documentation (will be added).  The underlying library automatically adjusts the timer prescaler based on the input period.  The minimum period or highest frequency this library supports is 1 microsecond or 1 MHz. The maximum period is 8388480 microseconds or about 8.3 seconds.

Steffan,

Inspired by the timer interrupt, i have made an example "task scheduler" that i want to share. 

I wanted to open a new topic "Examples"but i realized that i could not upload a VI ?

What to do ?

Regards, John

April 26, 2015
7:36 pm
Avatar
Steffan
Admin
Forum Posts: 408
Member Since:
March 12, 2015
sp_UserOfflineSmall Offline

Thanks John.  Thats a good point.  Hang on to it, let me see if we can make it so the forum accepts non-image attachments.  We can start a new thread once we figure that out.  Thanks.

April 27, 2015
8:14 pm
Avatar
kombela
Member
Members
Forum Posts: 6
Member Since:
April 27, 2015
sp_UserOfflineSmall Offline

What about supporting chipKIT WF32?

It is arduino compatible and has 80 MHz clock! I really would like to have a 80 Mhz resolution clock in my hands :)

Forum Timezone: UTC 0
Most Users Ever Online: 100
Currently Online:
2
Guest(s)
Currently Browsing this Page:
1 Guest(s)
Top Posters:
miche91: 33
scottj: 28
scadao: 23
Member Stats:
Guest Posters: 5
Members: 202
Moderators: 0
Admins: 3
Forum Stats:
Groups: 1
Forums: 2
Topics: 266
Posts: 1222
Newest Members:
pujacontrol
Administrators: geadmin: 22, filipealtoe: 96, Steffan: 356