You need to post your code - otherwise we are blind.
And please use the code button </> so your code looks like this and is easy to copy to a text editor
#include <SoftwareSerial.h>
SoftwareSerial mySerial(11, 10); // RX, TX
void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(38400);
while (!Serial) {
; // wait for serial port to connect. Needed for Leonardo only
}
Serial.println("Hello");
// set the data rate for the SoftwareSerial port
mySerial.begin(38400);
}
byte ReadOneByte() // One Byte Read Function
{
int ByteRead;
while (!mySerial.available());
ByteRead = mySerial.read();
return ByteRead;
}
void loop()
{
byte PrintOneByte = ReadOneByte();
Serial.println(PrintOneByte, HEX);
Serial.println("----");
}
[code]