-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when compiling the base example - error: "'base64_enc_len' was not declared in this scope" #18
Comments
Same issue did anyone fixed ? |
Not sure if any of you are still having this problem, but I ran into this as well (Arduino IDE 1.8.2) and fixed it by renaming the files and functions in the library that were causing the issues |
Having the same issue (Arduino 1.8.5 & ESP8266). Looks like this file already defined somewhere in sources. |
same problem here. I just renamed the two files to MyBase64 and added |
This issue still seems to persist on the ESP8266, the workaround proposed by @SimonKlausLudwig does work though, if anyone but me still might come across this issue. |
#if (defined(AVR)) const char PROGMEM b64_alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" /* 'Private' declarations */ int base64_encode(char *output, char *input, int inputLen) {
} int base64_decode(char * output, char * input, int inputLen) {
} int base64_enc_len(int plainLen) { int base64_dec_len(char * input, int inputLen) {
} inline void a3_to_a4(unsigned char * a4, unsigned char * a3) { inline void a4_to_a3(unsigned char * a3, unsigned char * a4) { inline unsigned char b64_lookup(char c) { |
Pls anyone who can help to solve this error code as below? C:\Users\user\Documents\Arduino\libraries\WaziDev\src\WaziDev.cpp:188:18: error: 'base64_enc_len' was not declared in this scope |
Arduino IDE 1.6.12
'base64_enc_len' was not declared in this scope
The text was updated successfully, but these errors were encountered: