diff options
author | QMK Bot <hello@qmk.fm> | 2022-03-13 21:50:20 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-03-13 21:50:20 +0000 |
commit | 3f83a213837096135e168991596eca0c4a4b79b2 (patch) | |
tree | b07284526c1ded4eac7f73cc3ea35d2668f3994e /keyboards/uno/uno.h | |
parent | 2df28c1850ebbafac78e70b3cdad9226f040b19f (diff) | |
parent | 8fe3864fe7601a7e6572e7db680775edeff771ac (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/uno/uno.h')
-rw-r--r-- | keyboards/uno/uno.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/keyboards/uno/uno.h b/keyboards/uno/uno.h index 91d48d2ad5..bb3248e293 100644 --- a/keyboards/uno/uno.h +++ b/keyboards/uno/uno.h @@ -13,12 +13,13 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ + #pragma once #include "quantum.h" -#define LAYOUT( \ - K00 \ -) { \ - { K00 } \ -} +#if defined(KEYBOARD_uno_rev1) +# include "rev1.h" +#elif defined(KEYBOARD_uno_rev2) +# include "rev2.h" +#endif |