1

I have a motherboard from a Lenovo (ST50 i think, Xeon cpu), now in use for a gaming computer.

It has some extra non-lenovo memory installed ("unqualified DIMM"), prompting for "press F2" when starting up.

Is there a way to disable this check in the bios?

enter image description here

1 Answers1

0

There is no direct solution but using a Digispark ATtiny85 micro mainboard and the following code, the work-around is to automate an F2 keyboard-press after a suitable delay.

  DigiKeyboard.sendKeyStroke(0);
  DigiKeyboard.delay(40000);
  DigiKeyboard.sendKeyStroke(KEY_F2);