Monday, September 7, 2015

A Working Snippet. Whew!

The following snippet works as it should. Support for HW flow control is currently off, and a few other possible issues. But I'm getting close to having communication between puTTY and the computer. That will help a LOT!

    puts(welcomeStr);
    puts(nextLine);
    while (1)
    {
        gets(buffer);
        puts(buffer);
    }


Now to figure out if I can use this to help me with the next step.... Bootstrapping is fun. I killed bugs one by one and corrected my misimpression of how the MAX3110 TM interrupt works. Once it's done, I'll rewrite it in assembly. It's not exactly snappy. Of course, I could order a 8MHz oscillator from DigiKey as well....

No comments:

Post a Comment