Netduino home hardware projects downloads community

Jump to content


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

Member Since 19 Aug 2010
Offline Last Active Jul 18 2017 03:30 AM
-----

Posts I've Made

In Topic: Odd compilation and deployment problems in VS2015

11 September 2015 - 10:57 PM

It's already been raised with the NETMF team.


In Topic: Odd compilation and deployment problems in VS2015

11 September 2015 - 03:19 AM

https://www.ghielect...d=19617&page=1?


In Topic: SPLIT: Integrated MAC and 10 vs 100 mbps

14 July 2015 - 07:55 AM

yes it comes in 100 pin which you can hook up to a PHY


In Topic: Why not clock it @ 180MHz?

14 July 2015 - 07:35 AM

The default STM port that the N3 is based on doesn't allow 180mhz due to the clock dividers used for USB and other peripherals.

 

To achieve 180mhz more files need a massage.


In Topic: One InterruptPort, two interrupts?

28 March 2015 - 04:08 PM

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
    }
}

home    hardware    projects    downloads    community    where to buy    contact Copyright © 2016 Wilderness Labs Inc.  |  Legal   |   CC BY-SA
This webpage is licensed under a Creative Commons Attribution-ShareAlike License.