Page 1 of 1

[SOLVED] force multiple decks?

Posted: Mon Aug 19, 2019 11:56 am
by wydmynd
Hi,
Due to the known SPI sharing issue with flow and sd card decks, I am trying to make a modified uSD deck.
it has no OW memory so I want to force it using -
CFLAGS += -DDECK_FORCE=bcUSD

problem is, I already use some autonomous code on a "virtual deck" which is forced.

can you force 2 decks?

thanks!

Re: force multiple decks?

Posted: Tue Aug 20, 2019 7:15 am
by arnaud
Hi,

Yes, you can just separate them with colon ":". For example:

Code: Select all

CFLAGS += -DDECK_FORCE=bcUSD:someAutomation

Re: force multiple decks?

Posted: Wed Aug 28, 2019 6:11 am
by wydmynd
thanks! works