
Netduino Firmware v4.2.0 RC4 (Netduino + Netduino Plus)
#121
Posted 12 April 2012 - 04:27 PM
#122
Posted 13 April 2012 - 12:17 AM
#123
Posted 13 April 2012 - 06:16 PM
Hi nakchak,
That's the release date for the source for Netduino Go firmware...plus the RC5 source for Netduino.
If RC5 works well for everyone, we'll switch the PWM and AnalogInput classes over to the new 4.2 ones (the same ones implemented already on Netduino Go) and then ship a final RC6/RTM for Netduino.
Chris
Where is the v4.2.0 RC5 for Netduino+ located?
#124
Posted 13 April 2012 - 07:02 PM
It's in testing right now. We're working out a deployment glitch. We hope to post it soon...Where is the v4.2.0 RC5 for Netduino+ located?
Chris
#125
Posted 15 April 2012 - 02:23 AM
#126
Posted 15 April 2012 - 02:28 AM
#127
Posted 16 April 2012 - 05:23 AM
#128
Posted 16 April 2012 - 01:22 PM
Hi,
I have just erased and reflashed my Netduino Plus to firmware 4.2 RC4.
When deploying new projects, I get complains about mscorlib being the
wrong version. I have already tracked this down (thanks to other posts
on this forum) that this happens because I am running Netduino SDK 4.1.
I can't find Netduino SDK 4.2 RC4 though. Would it be possible to provide
links for both the x86 and x64 versions together with the firmware in these
posts? That would save a lot of time. Thanks in advance and keep up the good
work, Netduino is a fantastic product!
Regards,
2LM
In the opening post in this thread, check out the first bolded sentence at the beginning - that link has what you are looking for.
Version: 4.2.0 RELEASE CANDIDATE (version 4.2.0.0 RC4)
This firmware requires use of the .NET Micro Framework v4.2 RTM SDK. Users must completely erase and reflash their Netduinos to use this firmware.
#129
Posted 17 April 2012 - 06:44 PM
In the opening post in this thread, check out the first bolded sentence at the beginning - that link has what you are looking for.
Hi,
Thanks for your response. I have indeed been able to download the Netduino SDK.
It was however not clear to me that I had to look for the Netduino SDK in a link
for the .NET Micro Framework. No criticism, just feedback, I'm just thinking that
more people might make this honest mistake…
Regards,
2LM
#130
Posted 17 April 2012 - 09:55 PM
Hi Jay,
How big is your app? <=48KB?
Chris
#131
Posted 21 April 2012 - 10:47 AM
Hi emg,
It's in testing right now. We're working out a deployment glitch. We hope to post it soon...
Chris
Hi Chris,
Installed latest 4.2 SDK (no problems) and just realized this does not have RC5 firmware for N+? Is this correct? I must have misunderstood you, I thought 'deployment issues' were for the just released SDK?
#132
Posted 23 April 2012 - 09:35 PM
- Apostolos likes this
#133
Posted 24 April 2012 - 04:12 PM
#134
Posted 24 April 2012 - 07:24 PM
#135
Posted 25 April 2012 - 08:05 AM
In fact if I am debugging inside VS and pull teh USB cord our my computer instantly reboots... thats a nice feature.
Yeah,
this 'feature' is also discussed in Drivers for .NET MF 4.2.
There is an issue in Codeplex describing this behaviour. But sadly this bug can only be reproduced by another bug: Read on a disconnected I2C Bus takes forever.
This is not ideal. However you can try the repro and vote for it.
If something should be added or changed please send me a message.
Guido
#136
Posted 04 May 2012 - 12:57 PM
We're still working out a deployment glitch with RC5, but hope to have it passed off soon for the community.
We will also have an updated Netduino 4.2 SDK installer.
Chris
News?
#137
Posted 04 May 2012 - 07:43 PM
#138
Posted 04 May 2012 - 08:39 PM
Deployment of an app via Visual Studio... One of our beta testers was having troubles, although it looks like it might have been an unrelated issue. I should know soon.Chris, what is the 'deployment glitch'? RC5 ER_CONFIG and ER_FLASH are just unzipped and then flashed to the device I thought?
[Several people have been testing RC5...if you'd like to be added to that list, please PM me with your e-mail address and the board you're using.]
Chris
#139
Posted 06 May 2012 - 03:58 AM
double Temperature = 79.78374927437; string formattedTemp = Temperature.ToString().Substring(0,5) + "F"; Debug.Write(formattedTemp);For some reason it seems to think Temperature.ToString() is null however, reworking the code this way works:
double Temperature = 79.78374927437; string formattedTemp = Temperature.ToString(); Debug.Write(formattedTemp.Substring(0,5) + "F");
#140
Posted 06 May 2012 - 12:27 PM
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users