MajicDesigns / MD_Parola

Library for modular scrolling LED matrix text displays
GNU Lesser General Public License v2.1
428 stars 135 forks source link

strrev missing?? #109

Closed Guenni75 closed 1 year ago

Guenni75 commented 1 year ago

Hello.

I installed MD_Parola and MD_MAX72xx today.

I wanted to try Parola_scrolling_vertical but i get the error:

Parola_Scrolling_Vertical.ino:160:7: error: 'strrev' was not declared in this scope; did you mean 'strsep'?

Other examples are working fine.

MajicDesigns commented 1 year ago

The strrev() function (used to reverse the given string) is a built-in function in C and is defined in string.h header file, which is a standard header file for all C++ compilers.

Please check that you have string.h on your computer.

What development environment are you using?

Guenni75 commented 1 year ago

I work with the Arduino IDE 2.0.3.

MajicDesigns commented 1 year ago

IDE 2.0.3 under Windows 10 with target Arduino Uno compiles cleanly on my system.

Guenni75 commented 1 year ago

I compile with a WEMOS D1 (esp8266). The problem is, strrev is no standard C library function.

image

Guenni75 commented 1 year ago

I tried to reverse the Array by myself. I changed BUF_SIZE to 7.

image

The Serialmonitor shows everything is ok, BUT I don't understand, why is reverseMessage empty?????? And newMessage is an Array! Why can i print it so simple with Serial.print ???

If i skip the reverse action, the LCD works.

MajicDesigns commented 1 year ago

Your reverse function is logically flawed. The string is generally not the size of the buffer (so you should use strlen() not BUF_SIZE) and you are not handling the terminating nul character properly in the reversal process. The standard strrev() does the reverse in the same buffer (ie, no additional memory required).

Here is the code for the strrev() function from the libraries:

void strrev(unsigned char *str)
{
  int i;
  int j;
  unsigned char a;
  unsigned int len = strlen((const char *)str);
   
  for (i = 0, j = len - 1; i < j; i++, j--)
  {
  a = str[i];
  str[i] = str[j];
  str[j] = a;
  }
}

Also, for future reference, please include text and not graphics when including code or debug output in your messages as these are easier to handle if we need to cut/paste for testing.

Guenni75 commented 1 year ago

Thanks. I will try this.