element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum unable to get good comms from serial with raspberry pi....
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 1 reply
  • Subscribers 681 subscribers
  • Views 391 views
  • Users 0 members are here
  • gertduino
  • raspberry
  • pi
  • minicom
  • raspberry_pi
  • serial
  • raspeberry_pi_accessories
Related

unable to get good comms from serial with raspberry pi....

wegunterjr
wegunterjr over 11 years ago

I have followed these steps:

carefully followed the instructions for disabling login via the Pi's serial port. Then I disabled the Pi's boot messages (out to the serial port), shut down the system, set the jumpers to connect the Pi's serial transmit line to the Gertduino's serial receive line (and vice-versa), powered up the system (it booted up just fine, yay!), installed the minicom terminal emulator,


I just can't remember if i did it manually, or if i used Gordon's script. Either way, it is complete.  I use minicom to connect to the arduino (pi - 328 using the crossed wires) but all i get is gibberish in the window. Anything I Might be missing?


I am using the Serial_startup.in arduino sketch and it compiles and uploads, i see the upload led blink, but then when i connect to it with minicom, I get nothing useful out of it.  I start with

minicom -b 9600 -o -D /dev/ttyAMA0

 

  • Sign in to reply
  • Cancel
Parents
  • Former Member
    0 Former Member over 11 years ago
    all i get is gibberish in the window.

    That is a good start because it seem you have a connection and data is coming thru. 'Gibberish' suggest that your baud rate is wrong.

    I use the program below to get a serial port working:

    //

    // Serial Sartup

    //

    // Use to get your serial comport working.

    // This program outputs a pattern without flooding

    // the output too much.

    // It echo's received characters between ><

    // Written for 16MHz clock

    //

    // G.J. van Loo, 27 October 2013

    // No rights reserved. This is freeware.

    //

     

    int spaces = 0;

     

    void send_serial_string(char *str);

     

    void setup()

    {

      // start serial port at 9600 bps:

      Serial.begin(9600);

      // Serial receive is on pin 2 so make that an input

      pinMode(2,INPUT);

     

      send_serial_string("Hello world!\r\n");

     

    }

     

    char str[128];

    void loop()

    { volatile long wait;

      int inByte;

      inByte= -1;

      for (wait=0; wait<50000 && inByte==-1; wait++)

      { wait++;

        wait--;

        inByte = Serial.read();

      }

      if (inByte!=-1)

      { Serial.write('>');

        Serial.write(inByte);

        Serial.write('<');

      }

      for (wait=0; wait<spaces; wait++)

         Serial.write(' ');

      spaces++;

      if (spaces>20)

        spaces = 0;

      send_serial_string("Hi\r\n");

    }

     

    void send_serial_string(char *str)

    {

      while(*str)

        Serial.write(*str++);

    }

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • Former Member
    0 Former Member over 11 years ago
    all i get is gibberish in the window.

    That is a good start because it seem you have a connection and data is coming thru. 'Gibberish' suggest that your baud rate is wrong.

    I use the program below to get a serial port working:

    //

    // Serial Sartup

    //

    // Use to get your serial comport working.

    // This program outputs a pattern without flooding

    // the output too much.

    // It echo's received characters between ><

    // Written for 16MHz clock

    //

    // G.J. van Loo, 27 October 2013

    // No rights reserved. This is freeware.

    //

     

    int spaces = 0;

     

    void send_serial_string(char *str);

     

    void setup()

    {

      // start serial port at 9600 bps:

      Serial.begin(9600);

      // Serial receive is on pin 2 so make that an input

      pinMode(2,INPUT);

     

      send_serial_string("Hello world!\r\n");

     

    }

     

    char str[128];

    void loop()

    { volatile long wait;

      int inByte;

      inByte= -1;

      for (wait=0; wait<50000 && inByte==-1; wait++)

      { wait++;

        wait--;

        inByte = Serial.read();

      }

      if (inByte!=-1)

      { Serial.write('>');

        Serial.write(inByte);

        Serial.write('<');

      }

      for (wait=0; wait<spaces; wait++)

         Serial.write(' ');

      spaces++;

      if (spaces>20)

        spaces = 0;

      send_serial_string("Hi\r\n");

    }

     

    void send_serial_string(char *str)

    {

      while(*str)

        Serial.write(*str++);

    }

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube