summaryrefslogtreecommitdiffstats
path: root/package/mmc_over_gpio
Commit message (Expand)AuthorAgeFilesLines
* do not load the spi_gpio module from mmc-over-gpio, bump release number (#4663)Florian Fainelli2009-04-121-3/+4
* Deprecate the old SPI-GPIO driver.Michael Büsch2009-02-101-1/+1
* make mmc_over_gpio init uci-awareJo-Philipp Wich2008-11-173-5/+34
* Update gpiommc to use configfsMichael Büsch2008-07-202-5/+44
* Update GPIO-based MMC driverMichael Büsch2008-07-184-353/+5
* more use of the new GPIO_SUPPORT optionNicolas Thill2008-05-021-1/+1
* move spi_gpio driver into the kernel, clean-up SPI modulesGabor Juhos2008-04-155-303/+6
* disable kmod-mmc-over-gpio on x86Nicolas Thill2008-04-121-1/+1
* Create the kmod-spi package and load mmc_over_gpio after spi (#3273)Florian Fainelli2008-03-271-1/+1
* mmc_over_gpio: Add initscript that will create a device Note that we should u...Michael Büsch2008-03-212-2/+30
* linux-2.6: Add a driver to run an MMC or SD card over a GPIO based SPI interf...Michael Büsch2008-03-215-0/+683
r: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
Copyright 2017 Danny Nguyen <danny@hexwire.com>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

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

/* Use I2C or Serial, not both */

// #define USE_SERIAL
#define USE_I2C

/* Select hand configuration */

#define MASTER_LEFT
// #define MASTER_RIGHT
// #define EE_HANDS


#undef LSPO_KEY
#undef RSPC_KEY
#define LSPO_KEY KC_8 // Nordic Left SpaceCadet
#define RSPC_KEY KC_9 // Nordic Right SpaceCadet


#undef RGBLED_NUM
#define RGBLIGHT_ANIMATIONS
#define RGBLED_NUM 12
#define RGBLIGHT_HUE_STEP 8
#define RGBLIGHT_SAT_STEP 8
#define RGBLIGHT_VAL_STEP 8