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.

lynxeyed_atsu

Member Since 19 Aug 2010
Offline Last Active Apr 09 2012 04:26 AM
-----

Posts I've Made

In Topic: What is the Netduino Mini?

22 October 2010 - 05:59 AM

Cool! We can use netduino with another device more easily!

In Topic: NetduinoUpdate command-line prototype for Mac OS X and Linux

26 September 2010 - 10:57 AM

Hi Chris, I found "mchelper" is perfect alternative to SAM-BA! If we're using Mac OS X and having no Windows, no VM. mchelper is made to program MAKE CONTROLLER; But We can use this for netduino because its core is AT91SAM7X. But we must completely erase netduinos bootloader before program. We can download from this site, http://www.makingthi...rces/downloads/ Regards, Atsushi Saitoh

In Topic: Netduino Firmware v4.1.1 ALPHA 1

18 September 2010 - 09:01 AM

Hi all.
I'm in a trouble controlling a SDCard(1GB) with FAT16-formatted.
I changed the firmware of my netduino v.4.1.1-alpha usin MFDeploy.exe.
I use GPIO_PIN_D3 as CS-pin of SDCard.
Here's my code. And I could build with no errors.
using System;
using System.Threading;
using Microsoft.SPOT;
using System.IO;
using Microsoft.SPOT.Hardware;
using SecretLabs.NETMF.IO; 
using SecretLabs.NETMF.Hardware;
using SecretLabs.NETMF.Hardware.Netduino;

namespace NetduinoApplication3
{
    public class Program
    {
        public static void Main()
        {
            StorageDevice.MountSD("SD1", SPI_Devices.SPI1, Pins.GPIO_PIN_D3/*CS pin*/);

            string[] directories = System.IO.Directory.GetDirectories(@"\");
            Debug.Print("directory count: " + directories.Length.ToString());

            for (int i = 0; i < directories.Length; i++)
            {
                Debug.Print("directory: " + directories[i]);
            }

            string[] files = System.IO.Directory.GetFiles(@"\SD1");
            Debug.Print("file count: " + files.Length.ToString());

            for (int i = 0; i < files.Length; i++)
            {
                Debug.Print("filename: " + files[i]);
                FileStream fs = new FileStream(files[i], FileMode.Open, FileAccess.Read, FileShare.None, 512);
                StreamReader sr = new StreamReader(fs);
                Debug.Print("contents: " + sr.ReadToEnd());
            }
        }
    }
}

I connected my netduino with "TFT-LCD & SDCard shield"(this shield was made in JPN) hit "F5" key to start debug.
But VS2010 just say, "The debugging target is not an initialized state;rebooting".
So I Stopped debuging. And I plugged USB cable after unplugged my netduino,but There's no changes.VS2010 just say rebooting. :-p
So give me any advice?

In Topic: OLED...first project

21 August 2010 - 11:53 PM

Hi Szymon,

Thank you for your reply.
Yes, Japanese people came to be able to buy Netduino this week via SWITCHSCIENCE.(but netduino is sold out at once.)
A few people know the usage of .Net Micro Framework because they are using "FE* Domino".
Others are beginner of .NET Micro Framework.(Generally we (and Mr.Szymon!) are using C/C++ on embedded CPU )

Due to language barier it's hard for me to keep up with what you are doing. Hope you could give us some updates on cool project you are working on.

I also feel the LANGUAGE barrier. I'LL translate my job log until next Sunday in English.


Regards.

In Topic: OLED...first project

21 August 2010 - 03:11 PM

Thank you for visiting my weblog... ;-) http://ecrafts.g.hat...e.jp/Lynx-EyED/

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.