Visual Studio
![]() |
  | |||||||||||||
![]() |
|
![]() |
||||||||||||
The Netduino forums have been replaced by new forums at community.wildernesslabs.co.
This site has been preserved for archival purposes only
and the ability to make new accounts or posts has been turned off.
Juzzer's ContentThere have been 31 items by Juzzer (Search limited from 06-July 24) #60109 Windows on Devices? When?
#60107 Windows on Devices? When?
@Spiked - you only need a few passives and a crystal to get it running... #60105 Windows on Devices? When?
@Se3ker $4.20 for 1000+ - group buy anyone?
*Edit*
$4.17ea for 5 STM32F401CEU6... from Future Electronics... #61864 raspberry pi 2
@foged - in a couple of weeks #61840 raspberry pi 2
STM32F411's running NETMF 4.3 Carbon is WiFi using a ESP-03 module Helium is BLE #61805 raspberry pi 2
How about one of these
#61866 News from the MBN team
Yes you can use GCC
I would email the MBN team about getting one sent from France direct as perhaps they can do cheaper shipping. #61824 News from the MBN team
Even Minter #61629 News from the MBN team
Mint #61725 Serial ports and Bluetooth I/O and GPIO output
I'm a bit confused what you are actually trying to achieve and what examples are missing to get you going...
Are you just trying to achieve BT comms? #61717 Serial ports and Bluetooth I/O and GPIO output
using System.IO.Ports;
using Microsoft.SPOT.Hardware;
namespace MFConsoleApplication2
{
public class Program
{
private static SerialPort _serial;
private static OutputPort _d2, _d3;
public static void Main()
{
_d2 = new OutputPort(Cpu.Pin.GPIO_Pin0, false);
_d3 = new OutputPort(Cpu.Pin.GPIO_Pin1, false);
_serial = new SerialPort("COM1", 9600, Parity.None, 8, StopBits.One);
_serial.DataReceived += _serial_DataReceived;
_serial.Open();
}
static void _serial_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
byte[] bytes = new byte[1];
while (_serial.BytesToRead > 0)
{
// read a single byte
_serial.Read(bytes, 0, bytes.Length);
// send the same byte back
_serial.Write(bytes, 0, bytes.Length);
_d2.Write(!_d2.Read());
_d3.Write(!_d3.Read());
}
}
}
}
#61442 Things we can learn from GHI
#61437 Things we can learn from GHI
Also an over enthusiastic admin who deletes posts and has an interesting marketing perspective.... #61831 Battery powered logger with GPRS using Netduino plus 1 / 2
Yes that module can be used.
I am building a similar device over the coming weeks running NETMF so if your interested drop me an email. #64091 Odd compilation and deployment problems in VS2015
#64100 Odd compilation and deployment problems in VS2015
It's already been raised with the NETMF team. #60102 uecide work with netduino plus ???
Nicer than Visual Studio? Good luck with that #63514 SPLIT: Integrated MAC and 10 vs 100 mbps
yes it comes in 100 pin which you can hook up to a PHY #61843 Compiled 4.3, got ER_CONFIG & ER_FLASH, but how to deploy?
Rename Tinybooter.hex to Tinybooter.s19
Open DFU File Manager
Top option "I want to GENERATE a DFU......"
Click "S19 or Hex" button - call it Tinyboote.dfu
Job done #60736 Custom building a smaller Netduino 2
Good job #61966 One InterruptPort, two interrupts?
using System;
using System.Threading;
using Microsoft.SPOT;
using Microsoft.SPOT.Hardware;
using StmHelper;
namespace MFConsoleApplication1
{
public class Program
{
private static InterruptPort _pin;
public static void Main()
{
_pin = new InterruptPort(Pin.PC1,true,Port.ResistorMode.PullUp,Port.InterruptMode.InterruptEdgeBoth);
_pin.OnInterrupt += pin_OnInterrupt;
Thread.Sleep(Timeout.Infinite);
}
static void pin_OnInterrupt(uint data1, uint data2, DateTime time)
{
PinState buttonState = _pin.Read() ? PinState.Off : PinState.On;
switch (buttonState)
{
case PinState.Off:
Debug.Print("Off");
break;
case PinState.On:
Debug.Print("On");
break;
}
}
}
public enum PinState
{
Off = 0,
On = 1
}
}
#61823 Troubleshooting Memory
true forces the GC to run and release memory. You want Debug.Print(Debug.GC(false).ToSting()); #61822 Flash / Code Storage / RAM ..etc.
The 1MB flash contains TinyBooter, TinyCLR and your user program. RAM is seperate. #61830 Flash / Code Storage / RAM ..etc.
That is showing free ram - the other 92kb has been gobbled up by starting up TinyCLR This can be reduced by removing features from the firmware, for instance a base STM firmware is only using about 40kb #61867 Azure EventHub Service Gateway for Netduino Devices
Nice 1
| ||||||||||||||
![]() |
||||||||||||||
![]() |
|
![]() |
||||||||||||
![]() |
This webpage is licensed under a Creative Commons Attribution-ShareAlike License. | ![]() |
||||||||||||
![]() |