1

我一直在从事一个项目,以使用 Microsoft 的 .NET gadgeteer 模块破解和与 Gameboy 打印机通信。到目前为止,我一直在处理硬件(请参阅此线程:http ://www.tinyclr.com/forum/21/6665/ ://www.tinyclr.com/forum/21/6665/ )

我已根据需要将打印机连接为 SPI 串行连接,现在我需要开始与打印机交换字节包以开始探索打印。

我试图将一些代码放在一起,但我失败了。我真的不知道如何与打印机交谈。我取得的唯一进展是 SPI 配置,但实际通信超出了我的理解。也许有人无法指出我正确的方向?

这是我试图复制的代码:http: //milesburton.com/images/e/ec/GBPrinter_Arduino_Alpha_0.01.pde

我的主要参考资料是 Thermaldotnet(sparkfun 打印机的库)github.com/yukimizake/ThermalDotNet

蜘蛛上的 SPI:tinyclr.com/forum/21/6621/

和一个基本的 SPI 示例:*wiki.tinyclr.com/index.php?title=SPI_-_MP3_Decoder*

如何查看字节传输以判断是否有任何实际工作?

到目前为止我所拥有的:

using System;
using System.Collections;
using System.Threading;
using Microsoft.SPOT;
using Microsoft.SPOT.Presentation;
using Microsoft.SPOT.Presentation.Controls;
using Microsoft.SPOT.Presentation.Media;
using Microsoft.SPOT.Touch;
using Microsoft.SPOT.Hardware;

using Gadgeteer.Networking;
using GT = Gadgeteer;
using GTM = Gadgeteer.Modules;
using Gadgeteer.Modules.GHIElectronics;

namespace printTherm
{
public partial class Program
{
    static SPI MySPI = null;
    public static void Sub()
    {

        InputPort Therm;
        Therm = new InputPort(Cpu.Pin.GPIO_Pin8, false, Port.ResistorMode.PullUp);

        SPI.Configuration MyConfig =
             new SPI.Configuration(Cpu.Pin.GPIO_Pin8,
             false, 0, 0, true, true, 1000, SPI.SPI_module.SPI1);
        MySPI = new SPI(MyConfig);



        bool exit = false;
        do
        {
            byte[] tx_data = new byte[1];
            byte[] rx_data = new byte[0];
            while (Therm.Read() == true) ;

            tx_data[0] = 0x01;
            tx_data[1] = 0x00;

            MySPI.WriteRead(tx_data, rx_data);

            while (Therm.Read() == false) ;
            byte[] tx_data2 = new byte[28];
            byte[] rx_data2 = new byte[28];
            for (int i = 0; i < 28; i++)
            {
                tx_data2[i] = 0xFF;
                rx_data2[i] = 0x00;
            }
            MySPI.WriteRead(tx_data2, rx_data2);
        } while (exit == false);


        Thread.Sleep(100);
    }

    // This method is run when the mainboard is powered up or reset.   
    void ProgramStarted()
    {

        Debug.Print("Program Started");
    }
}
}

它与上面的代码几乎完全相同,除了我将 Pin 更改为 8 (MISO) 并添加了一些数组内容。在这一点上,我真的要瞎了。以如此贫乏的知识进入这个领域,我感到很抱歉,但任何一点帮助都将不胜感激。

为对此感兴趣的人提供更多资源:完整的音乐屏蔽代码:code.tinyclr.com/project/330/fez-music-shield/

文档:msdn.microsoft.com/en-us/library/ee436313.aspx 更多文档:netmf.com/Gadgeteer/docs/GadgeteerCore/2.41.500/html/0d40434b-2a84-2f72-ca4d-b0012535ea58.htm

对非超链接感到抱歉+在此先感谢!

4

0 回答 0