redboard Artemis missing 'program.params.quiet'

i have a redboard Artemis that i just got and i cant seem to upload anything without this error

Arduino: 1.8.15 (Linux), Board: “RedBoard Artemis, 115200, SparkFun Variable Loader (Recommended)”

Sketch uses 115856 bytes (11%) of program storage space. Maximum is 983040 bytes.

Global variables use 27544 bytes (7%) of dynamic memory, leaving 365672 bytes for local variables. Maximum is 393216 bytes.

Error while uploading: missing ‘program.params.quiet’ configuration parameter

This report would have more information with

“Show verbose output during compilation”

option enabled in File → Preferences.

any way i can fix this?

There are many confusing posts around this topic on the Internet. It has to do with parameters/instructions for the Arduino IDE. I have tried 1.8.16 on Ubuntu 20.04 and do not get this error. In Arduino IDE select FILE then preferences and then select “show verbose output during” upload. See what happens…

Arduino: 1.8.15 (Linux), Board: “RedBoard Artemis, 115200, SparkFun Variable Loader (Recommended)”

Sketch uses 115856 bytes (11%) of program storage space. Maximum is 983040 bytes.

Global variables use 27544 bytes (7%) of dynamic memory, leaving 365672 bytes for local variables. Maximum is 393216 bytes.

/home/steven/snap/arduino/61/.arduino15/packages/SparkFun/hardware/apollo3/2.1.1/tools/uploaders/svl/dist/linux/svl /dev/ttyUSB0 -f /tmp/arduino_build_653301/BlinkWithoutDelay.ino.bin -b 115200 -v

[122251] Error loading Python lib ‘/tmp/_MEI1uwkb9/libpython3.7m.so.1.0’: dlopen: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29’ not found (required by /tmp/_MEI1uwkb9/libpython3.7m.so.1.0)

[122251] Error loading Python lib ‘/tmp/_MEI1uwkb9/libpython3.7m.so.1.0’: dlopen: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29’ not found (required by /tmp/_MEI1uwkb9/libpython3.7m.so.1.0)

This report would have more information with

“Show verbose output during compilation”

option enabled in File → Preferences.

Arduino: 1.8.15 (Linux), Board: “RedBoard Artemis, 115200, SparkFun Variable Loader (Recommended)”

Sketch uses 115856 bytes (11%) of program storage space. Maximum is 983040 bytes.

Global variables use 27544 bytes (7%) of dynamic memory, leaving 365672 bytes for local variables. Maximum is 393216 bytes.

[5477] Error loading Python lib ‘/tmp/_MEI5YLNzt/libpython3.7m.so.1.0’: dlopen: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29’ not found (required by /tmp/_MEI5YLNzt/libpython3.7m.so.1.0)

[5477] Error loading Python lib ‘/tmp/_MEI5YLNzt/libpython3.7m.so.1.0’: dlopen: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29’ not found (required by /tmp/_MEI5YLNzt/libpython3.7m.so.1.0)

This report would have more information with

“Show verbose output during compilation”

option enabled in File → Preferences.

this was directly after a reboot

THanks that is helpfull information. There are many articles on the internet when you search on: glibc_2.29’ not found.

Looks to be related to the level of Linux you use. If that is an “older” version, you need to update to a newer version. Not sure what Linux you use, but if you have say Ubuntu 18.04… it is a known issue and you need to update.

Last I checked it’s 20 something

Tyr to get to the latest version. In a terminal run lsb_release -a

It will show your Ubuntu version. My output is

Distributor ID:	Ubuntu
Description:	Ubuntu 20.04.3 LTS
Release:	20.04
Codename:	focal

You can also check your GLIBC version with : ldd --version.

My output is

ldd (Ubuntu GLIBC 2.31-0ubuntu9.3) 2.31
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Roland McGrath and Ulrich Drepper.

No LSB modules are available.

Distributor ID: Ubuntu

Description: Ubuntu 20.04.3 LTS

Release: 20.04

Codename: focal

make sure to add --version like: ldd --version

Actually this is an Ubuntu issue not Sparkfun. Found this link that might help : https://askubuntu.com/questions/1143268 … rsion-2-29

Arduino: 1.8.15 (Linux), Board: “RedBoard Artemis, 115200, SparkFun Variable Loader (Recommended)”

Sketch uses 115856 bytes (11%) of program storage space. Maximum is 983040 bytes.

Global variables use 27544 bytes (7%) of dynamic memory, leaving 365672 bytes for local variables. Maximum is 393216 bytes.

[38643] Error loading Python lib ‘/tmp/_MEIivP9ES/libpython3.7m.so.1.0’: dlopen: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29’ not found (required by /tmp/_MEIivP9ES/libpython3.7m.so.1.0)

[38643] Error loading Python lib ‘/tmp/_MEIivP9ES/libpython3.7m.so.1.0’: dlopen: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29’ not found (required by /tmp/_MEIivP9ES/libpython3.7m.so.1.0)

This report would have more information with

“Show verbose output during compilation”

option enabled in File → Preferences.

i just reinstalled the drivers and this is what i got

It is not the drivers for the redboard, it s not Arduino IDE : it is Ubuntu.

The Arduino IDE detects that it needs GLIBC 2.29 which it can not find. It is then generating the error message you now see. Without verbose set on in the Arduino IDE preferences, it tried to find the instruction to stay quiet. As this instruction is apparently missing from the parameter file you got " Error while uploading: missing ‘program.params.quiet’ configuration parameter". But the root cause is GLIBC 2.29

Have look at Ubuntu https://askubuntu.com/questions/1143268 … rsion-2-29

i went thru the steps and still no effect. would doing the programs on windows fix this error?

yes… would think so. GLIBC 2.29 is on Linux versions, not needed for Windows.