diff options
| author | Joel Challis <git@zvecr.com> | 2019-11-08 21:43:30 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-08 21:43:30 +0000 |
| commit | 31eee6b05db4d4ae9c36514c8e00e32c093a9f50 (patch) | |
| tree | 1bd5d0dfbef3445b8550d0aa7865b173d6ff6edc /keyboards/retro_75 | |
| parent | 680d401faf03737b01f595b8800c211c0d130db6 (diff) | |
| download | qmk_firmware-31eee6b05db4d4ae9c36514c8e00e32c093a9f50.tar.gz qmk_firmware-31eee6b05db4d4ae9c36514c8e00e32c093a9f50.zip | |
Initial firmware for Retro75 (#7294)
* Initial firmware for Retro75
* Update readme to match new template guidelines
Diffstat (limited to 'keyboards/retro_75')
| -rw-r--r-- | keyboards/retro_75/chconf.h | 524 | ||||
| -rw-r--r-- | keyboards/retro_75/config.h | 249 | ||||
| -rw-r--r-- | keyboards/retro_75/halconf.h | 353 | ||||
| -rw-r--r-- | keyboards/retro_75/info.json | 15 | ||||
| -rw-r--r-- | keyboards/retro_75/keymaps/default/keymap.c | 22 | ||||
| -rw-r--r-- | keyboards/retro_75/keymaps/split_backspace/keymap.c | 22 | ||||
| -rw-r--r-- | keyboards/retro_75/mcuconf.h | 171 | ||||
| -rw-r--r-- | keyboards/retro_75/readme.md | 15 | ||||
| -rw-r--r-- | keyboards/retro_75/retro_75.c | 1 | ||||
| -rw-r--r-- | keyboards/retro_75/retro_75.h | 61 | ||||
| -rw-r--r-- | keyboards/retro_75/rules.mk | 54 |
11 files changed, 1487 insertions, 0 deletions
diff --git a/keyboards/retro_75/chconf.h b/keyboards/retro_75/chconf.h new file mode 100644 index 000000000..99fa8ce39 --- /dev/null +++ b/keyboards/retro_75/chconf.h | |||
| @@ -0,0 +1,524 @@ | |||
| 1 | /* | ||
| 2 | ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio | ||
| 3 | |||
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); | ||
| 5 | you may not use this file except in compliance with the License. | ||
| 6 | You may obtain a copy of the License at | ||
| 7 | |||
| 8 | http://www.apache.org/licenses/LICENSE-2.0 | ||
| 9 | |||
| 10 | Unless required by applicable law or agreed to in writing, software | ||
| 11 | distributed under the License is distributed on an "AS IS" BASIS, | ||
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| 13 | See the License for the specific language governing permissions and | ||
| 14 | limitations under the License. | ||
| 15 | */ | ||
| 16 | |||
| 17 | /** | ||
| 18 | * @file templates/chconf.h | ||
| 19 | * @brief Configuration file template. | ||
| 20 | * @details A copy of this file must be placed in each project directory, it | ||
| 21 | * contains the application specific kernel settings. | ||
| 22 | * | ||
| 23 | * @addtogroup config | ||
| 24 | * @details Kernel related settings and hooks. | ||
| 25 | * @{ | ||
| 26 | */ | ||
| 27 | |||
| 28 | #ifndef CHCONF_H | ||
| 29 | #define CHCONF_H | ||
| 30 | |||
| 31 | #define _CHIBIOS_RT_CONF_ | ||
| 32 | |||
| 33 | /*===========================================================================*/ | ||
| 34 | /** | ||
| 35 | * @name System timers settings | ||
| 36 | * @{ | ||
| 37 | */ | ||
| 38 | /*===========================================================================*/ | ||
| 39 | |||
| 40 | /** | ||
| 41 | * @brief System time counter resolution. | ||
| 42 | * @note Allowed values are 16 or 32 bits. | ||
| 43 | */ | ||
| 44 | #define CH_CFG_ST_RESOLUTION 32 | ||
| 45 | |||
| 46 | /** | ||
| 47 | * @brief System tick frequency. | ||
| 48 | * @details Frequency of the system timer that drives the system ticks. This | ||
| 49 | * setting also defines the system tick time unit. | ||
| 50 | */ | ||
| 51 | #define CH_CFG_ST_FREQUENCY 10000 | ||
| 52 | |||
| 53 | /** | ||
| 54 | * @brief Time delta constant for the tick-less mode. | ||
| 55 | * @note If this value is zero then the system uses the classic | ||
| 56 | * periodic tick. This value represents the minimum number | ||
| 57 | * of ticks that is safe to specify in a timeout directive. | ||
| 58 | * The value one is not valid, timeouts are rounded up to | ||
| 59 | * this value. | ||
| 60 | */ | ||
| 61 | #define CH_CFG_ST_TIMEDELTA 2 | ||
| 62 | |||
| 63 | /** @} */ | ||
| 64 | |||
| 65 | /*===========================================================================*/ | ||
| 66 | /** | ||
| 67 | * @name Kernel parameters and options | ||
| 68 | * @{ | ||
| 69 | */ | ||
| 70 | /*===========================================================================*/ | ||
| 71 | |||
| 72 | /** | ||
| 73 | * @brief Round robin interval. | ||
| 74 | * @details This constant is the number of system ticks allowed for the | ||
| 75 | * threads before preemption occurs. Setting this value to zero | ||
| 76 | * disables the preemption for threads with equal priority and the | ||
| 77 | * round robin becomes cooperative. Note that higher priority | ||
| 78 | * threads can still preempt, the kernel is always preemptive. | ||
| 79 | * @note Disabling the round robin preemption makes the kernel more compact | ||
| 80 | * and generally faster. | ||
| 81 | * @note The round robin preemption is not supported in tickless mode and | ||
| 82 | * must be set to zero in that case. | ||
| 83 | */ | ||
| 84 | #define CH_CFG_TIME_QUANTUM 0 | ||
| 85 | |||
| 86 | /** | ||
| 87 | * @brief Managed RAM size. | ||
| 88 | * @details Size of the RAM area to be managed by the OS. If set to zero | ||
| 89 | * then the whole available RAM is used. The core memory is made | ||
| 90 | * available to the heap allocator and/or can be used directly through | ||
| 91 | * the simplified core memory allocator. | ||
| 92 | * | ||
| 93 | * @note In order to let the OS manage the whole RAM the linker script must | ||
| 94 | * provide the @p __heap_base__ and @p __heap_end__ symbols. | ||
| 95 | * @note Requires @p CH_CFG_USE_MEMCORE. | ||
| 96 | */ | ||
| 97 | #define CH_CFG_MEMCORE_SIZE 0 | ||
| 98 | |||
| 99 | /** | ||
| 100 | * @brief Idle thread automatic spawn suppression. | ||
| 101 | * @details When this option is activated the function @p chSysInit() | ||
| 102 | * does not spawn the idle thread. The application @p main() | ||
| 103 | * function becomes the idle thread and must implement an | ||
| 104 | * infinite loop. | ||
| 105 | */ | ||
| 106 | #define CH_CFG_NO_IDLE_THREAD FALSE | ||
| 107 | |||
| 108 | /* Use __WFI in the idle thread for waiting. Does lower the power | ||
| 109 | * consumption. */ | ||
| 110 | #define CORTEX_ENABLE_WFI_IDLE TRUE | ||
| 111 | |||
| 112 | /** @} */ | ||
| 113 | |||
| 114 | /*===========================================================================*/ | ||
| 115 | /** | ||
| 116 | * @name Performance options | ||
| 117 | * @{ | ||
| 118 | */ | ||
| 119 | /*===========================================================================*/ | ||
| 120 | |||
| 121 | /** | ||
| 122 | * @brief OS optimization. | ||
| 123 | * @details If enabled then time efficient rather than space efficient code | ||
| 124 | * is used when two possible implementations exist. | ||
| 125 | * | ||
| 126 | * @note This is not related to the compiler optimization options. | ||
| 127 | * @note The default is @p TRUE. | ||
| 128 | */ | ||
| 129 | #define CH_CFG_OPTIMIZE_SPEED FALSE | ||
| 130 | |||
| 131 | /** @} */ | ||
| 132 | |||
| 133 | /*===========================================================================*/ | ||
| 134 | /** | ||
| 135 | * @name Subsystem options | ||
| 136 | * @{ | ||
| 137 | */ | ||
| 138 | /*===========================================================================*/ | ||
| 139 | |||
| 140 | /** | ||
| 141 | * @brief Time Measurement APIs. | ||
| 142 | * @details If enabled then the time measurement APIs are included in | ||
| 143 | * the kernel. | ||
| 144 | * | ||
| 145 | * @note The default is @p TRUE. | ||
| 146 | */ | ||
| 147 | #define CH_CFG_USE_TM FALSE | ||
| 148 | |||
| 149 | /** | ||
| 150 | * @brief Threads registry APIs. | ||
| 151 | * @details If enabled then the registry APIs are included in the kernel. | ||
| 152 | * | ||
| 153 | * @note The default is @p TRUE. | ||
| 154 | */ | ||
| 155 | #define CH_CFG_USE_REGISTRY TRUE | ||
| 156 | |||
| 157 | /** | ||
| 158 | * @brief Threads synchronization APIs. | ||
| 159 | * @details If enabled then the @p chThdWait() function is included in | ||
| 160 | * the kernel. | ||
| 161 | * | ||
| 162 | * @note The default is @p TRUE. | ||
| 163 | */ | ||
| 164 | #define CH_CFG_USE_WAITEXIT TRUE | ||
| 165 | |||
| 166 | /** | ||
| 167 | * @brief Semaphores APIs. | ||
| 168 | * @details If enabled then the Semaphores APIs are included in the kernel. | ||
| 169 | * | ||
| 170 | * @note The default is @p TRUE. | ||
| 171 | */ | ||
| 172 | #define CH_CFG_USE_SEMAPHORES TRUE | ||
| 173 | |||
| 174 | /** | ||
| 175 | * @brief Semaphores queuing mode. | ||
| 176 | * @details If enabled then the threads are enqueued on semaphores by | ||
| 177 | * priority rather than in FIFO order. | ||
| 178 | * | ||
| 179 | * @note The default is @p FALSE. Enable this if you have special | ||
| 180 | * requirements. | ||
| 181 | * @note Requires @p CH_CFG_USE_SEMAPHORES. | ||
| 182 | */ | ||
| 183 | #define CH_CFG_USE_SEMAPHORES_PRIORITY FALSE | ||
| 184 | |||
| 185 | /** | ||
| 186 | * @brief Mutexes APIs. | ||
| 187 | * @details If enabled then the mutexes APIs are included in the kernel. | ||
| 188 | * | ||
| 189 | * @note The default is @p TRUE. | ||
| 190 | */ | ||
| 191 | #define CH_CFG_USE_MUTEXES TRUE | ||
| 192 | |||
| 193 | /** | ||
| 194 | * @brief Enables recursive behavior on mutexes. | ||
| 195 | * @note Recursive mutexes are heavier and have an increased | ||
| 196 | * memory footprint. | ||
| 197 | * | ||
| 198 | * @note The default is @p FALSE. | ||
| 199 | * @note Requires @p CH_CFG_USE_MUTEXES. | ||
| 200 | */ | ||
| 201 | #define CH_CFG_USE_MUTEXES_RECURSIVE FALSE | ||
| 202 | |||
| 203 | /** | ||
| 204 | * @brief Conditional Variables APIs. | ||
| 205 | * @details If enabled then the conditional variables APIs are included | ||
| 206 | * in the kernel. | ||
| 207 | * | ||
| 208 | * @note The default is @p TRUE. | ||
| 209 | * @note Requires @p CH_CFG_USE_MUTEXES. | ||
| 210 | */ | ||
| 211 | #define CH_CFG_USE_CONDVARS TRUE | ||
| 212 | |||
| 213 | /** | ||
| 214 | * @brief Conditional Variables APIs with timeout. | ||
| 215 | * @details If enabled then the conditional variables APIs with timeout | ||
| 216 | * specification are included in the kernel. | ||
| 217 | * | ||
| 218 | * @note The default is @p TRUE. | ||
| 219 | * @note Requires @p CH_CFG_USE_CONDVARS. | ||
| 220 | */ | ||
| 221 | #define CH_CFG_USE_CONDVARS_TIMEOUT FALSE | ||
| 222 | |||
| 223 | /** | ||
| 224 | * @brief Events Flags APIs. | ||
| 225 | * @details If enabled then the event flags APIs are included in the kernel. | ||
| 226 | * | ||
| 227 | * @note The default is @p TRUE. | ||
| 228 | */ | ||
| 229 | #define CH_CFG_USE_EVENTS TRUE | ||
| 230 | |||
| 231 | /** | ||
| 232 | * @brief Events Flags APIs with timeout. | ||
| 233 | * @details If enabled then the events APIs with timeout specification | ||
| 234 | * are included in the kernel. | ||
| 235 | * | ||
| 236 | * @note The default is @p TRUE. | ||
| 237 | * @note Requires @p CH_CFG_USE_EVENTS. | ||
| 238 | */ | ||
| 239 | #define CH_CFG_USE_EVENTS_TIMEOUT TRUE | ||
| 240 | |||
| 241 | /** | ||
| 242 | * @brief Synchronous Messages APIs. | ||
| 243 | * @details If enabled then the synchronous messages APIs are included | ||
| 244 | * in the kernel. | ||
| 245 | * | ||
| 246 | * @note The default is @p TRUE. | ||
| 247 | */ | ||
| 248 | #define CH_CFG_USE_MESSAGES TRUE | ||
| 249 | |||
| 250 | /** | ||
| 251 | * @brief Synchronous Messages queuing mode. | ||
| 252 | * @details If enabled then messages are served by priority rather than in | ||
| 253 | * FIFO order. | ||
| 254 | * | ||
| 255 | * @note The default is @p FALSE. Enable this if you have special | ||
| 256 | * requirements. | ||
| 257 | * @note Requires @p CH_CFG_USE_MESSAGES. | ||
| 258 | */ | ||
| 259 | #define CH_CFG_USE_MESSAGES_PRIORITY FALSE | ||
| 260 | |||
| 261 | /** | ||
| 262 | * @brief Mailboxes APIs. | ||
| 263 | * @details If enabled then the asynchronous messages (mailboxes) APIs are | ||
| 264 | * included in the kernel. | ||
| 265 | * | ||
| 266 | * @note The default is @p TRUE. | ||
| 267 | * @note Requires @p CH_CFG_USE_SEMAPHORES. | ||
| 268 | */ | ||
| 269 | #define CH_CFG_USE_MAILBOXES TRUE | ||
| 270 | |||
| 271 | /** | ||
| 272 | * @brief Core Memory Manager APIs. | ||
| 273 | * @details If enabled then the core memory manager APIs are included | ||
| 274 | * in the kernel. | ||
| 275 | * | ||
| 276 | * @note The default is @p TRUE. | ||
| 277 | */ | ||
| 278 | #define CH_CFG_USE_MEMCORE FALSE | ||
| 279 | |||
| 280 | /** | ||
| 281 | * @brief Heap Allocator APIs. | ||
| 282 | * @details If enabled then the memory heap allocator APIs are included | ||
| 283 | * in the kernel. | ||
| 284 | * | ||
| 285 | * @note The default is @p TRUE. | ||
| 286 | * @note Requires @p CH_CFG_USE_MEMCORE and either @p CH_CFG_USE_MUTEXES or | ||
| 287 | * @p CH_CFG_USE_SEMAPHORES. | ||
| 288 | * @note Mutexes are recommended. | ||
| 289 | */ | ||
| 290 | #define CH_CFG_USE_HEAP FALSE | ||
| 291 | |||
| 292 | /** | ||
| 293 | * @brief Memory Pools Allocator APIs. | ||
| 294 | * @details If enabled then the memory pools allocator APIs are included | ||
| 295 | * in the kernel. | ||
| 296 | * | ||
| 297 | * @note The default is @p TRUE. | ||
| 298 | */ | ||
| 299 | #define CH_CFG_USE_MEMPOOLS FALSE | ||
| 300 | |||
| 301 | /** | ||
| 302 | * @brief Dynamic Threads APIs. | ||
| 303 | * @details If enabled then the dynamic threads creation APIs are included | ||
| 304 | * in the kernel. | ||
| 305 | * | ||
| 306 | * @note The default is @p TRUE. | ||
| 307 | * @note Requires @p CH_CFG_USE_WAITEXIT. | ||
| 308 | * @note Requires @p CH_CFG_USE_HEAP and/or @p CH_CFG_USE_MEMPOOLS. | ||
| 309 | */ | ||
| 310 | #define CH_CFG_USE_DYNAMIC FALSE | ||
| 311 | |||
| 312 | /** @} */ | ||
| 313 | |||
| 314 | /*===========================================================================*/ | ||
| 315 | /** | ||
| 316 | * @name Debug options | ||
| 317 | * @{ | ||
| 318 | */ | ||
| 319 | /*===========================================================================*/ | ||
| 320 | |||
| 321 | /** | ||
| 322 | * @brief Debug option, kernel statistics. | ||
| 323 | * | ||
| 324 | * @note The default is @p FALSE. | ||
| 325 | */ | ||
| 326 | #define CH_DBG_STATISTICS FALSE | ||
| 327 | |||
| 328 | /** | ||
| 329 | * @brief Debug option, system state check. | ||
| 330 | * @details If enabled the correct call protocol for system APIs is checked | ||
| 331 | * at runtime. | ||
| 332 | * | ||
| 333 | * @note The default is @p FALSE. | ||
| 334 | */ | ||
| 335 | #define CH_DBG_SYSTEM_STATE_CHECK FALSE | ||
| 336 | |||
| 337 | /** | ||
| 338 | * @brief Debug option, parameters checks. | ||
| 339 | * @details If enabled then the checks on the API functions input | ||
| 340 | * parameters are activated. | ||
| 341 | * | ||
| 342 | * @note The default is @p FALSE. | ||
| 343 | */ | ||
| 344 | #define CH_DBG_ENABLE_CHECKS FALSE | ||
| 345 | |||
| 346 | /** | ||
| 347 | * @brief Debug option, consistency checks. | ||
| 348 | * @details If enabled then all the assertions in the kernel code are | ||
| 349 | * activated. This includes consistency checks inside the kernel, | ||
| 350 | * runtime anomalies and port-defined checks. | ||
| 351 | * | ||
| 352 | * @note The default is @p FALSE. | ||
| 353 | */ | ||
| 354 | #define CH_DBG_ENABLE_ASSERTS FALSE | ||
| 355 | |||
| 356 | /** | ||
| 357 | * @brief Debug option, trace buffer. | ||
| 358 | * @details If enabled then the trace buffer is activated. | ||
| 359 | * | ||
| 360 | * @note The default is @p CH_DBG_TRACE_MASK_DISABLED. | ||
| 361 | */ | ||
| 362 | #define CH_DBG_TRACE_MASK CH_DBG_TRACE_MASK_DISABLED | ||
| 363 | |||
| 364 | /** | ||
| 365 | * @brief Trace buffer entries. | ||
| 366 | * @note The trace buffer is only allocated if @p CH_DBG_TRACE_MASK is | ||
| 367 | * different from @p CH_DBG_TRACE_MASK_DISABLED. | ||
| 368 | */ | ||
| 369 | #define CH_DBG_TRACE_BUFFER_SIZE 128 | ||
| 370 | |||
| 371 | /** | ||
| 372 | * @brief Debug option, stack checks. | ||
| 373 | * @details If enabled then a runtime stack check is performed. | ||
| 374 | * | ||
| 375 | * @note The default is @p FALSE. | ||
| 376 | * @note The stack check is performed in a architecture/port dependent way. | ||
| 377 | * It may not be implemented or some ports. | ||
| 378 | * @note The default failure mode is to halt the system with the global | ||
| 379 | * @p panic_msg variable set to @p NULL. | ||
| 380 | */ | ||
| 381 | #define CH_DBG_ENABLE_STACK_CHECK FALSE | ||
| 382 | |||
| 383 | /** | ||
| 384 | * @brief Debug option, stacks initialization. | ||
| 385 | * @details If enabled then the threads working area is filled with a byte | ||
| 386 | * value when a thread is created. This can be useful for the | ||
| 387 | * runtime measurement of the used stack. | ||
| 388 | * | ||
| 389 | * @note The default is @p FALSE. | ||
| 390 | */ | ||
| 391 | #define CH_DBG_FILL_THREADS FALSE | ||
| 392 | |||
| 393 | /** | ||
| 394 | * @brief Debug option, threads profiling. | ||
| 395 | * @details If enabled then a field is added to the @p thread_t structure that | ||
| 396 | * counts the system ticks occurred while executing the thread. | ||
| 397 | * | ||
| 398 | * @note The default is @p FALSE. | ||
| 399 | * @note This debug option is not currently compatible with the | ||
| 400 | * tickless mode. | ||
| 401 | */ | ||
| 402 | #define CH_DBG_THREADS_PROFILING FALSE | ||
| 403 | |||
| 404 | /** @} */ | ||
| 405 | |||
| 406 | /*===========================================================================*/ | ||
| 407 | /** | ||
| 408 | * @name Kernel hooks | ||
| 409 | * @{ | ||
| 410 | */ | ||
| 411 | /*===========================================================================*/ | ||
| 412 | |||
| 413 | /** | ||
| 414 | * @brief Threads descriptor structure extension. | ||
| 415 | * @details User fields added to the end of the @p thread_t structure. | ||
| 416 | */ | ||
| 417 | #define CH_CFG_THREAD_EXTRA_FIELDS \ | ||
| 418 | /* Add threads custom fields here.*/ | ||
| 419 | |||
| 420 | /** | ||
| 421 | * @brief Threads initialization hook. | ||
| 422 | * @details User initialization code added to the @p chThdInit() API. | ||
| 423 | * | ||
| 424 | * @note It is invoked from within @p chThdInit() and implicitly from all | ||
| 425 | * the threads creation APIs. | ||
| 426 | */ | ||
| 427 | #define CH_CFG_THREAD_INIT_HOOK(tp) { \ | ||
| 428 | /* Add threads initialization code here.*/ \ | ||
| 429 | } | ||
| 430 | |||
| 431 | /** | ||
| 432 | * @brief Threads finalization hook. | ||
| 433 | * @details User finalization code added to the @p chThdExit() API. | ||
| 434 | */ | ||
| 435 | #define CH_CFG_THREAD_EXIT_HOOK(tp) { \ | ||
| 436 | /* Add threads finalization code here.*/ \ | ||
| 437 | } | ||
| 438 | |||
| 439 | /** | ||
| 440 | * @brief Context switch hook. | ||
| 441 | * @details This hook is invoked just before switching between threads. | ||
| 442 | */ | ||
| 443 | #define CH_CFG_CONTEXT_SWITCH_HOOK(ntp, otp) { \ | ||
| 444 | /* Context switch code here.*/ \ | ||
| 445 | } | ||
| 446 | |||
| 447 | /** | ||
| 448 | * @brief ISR enter hook. | ||
| 449 | */ | ||
| 450 | #define CH_CFG_IRQ_PROLOGUE_HOOK() { \ | ||
| 451 | /* IRQ prologue code here.*/ \ | ||
| 452 | } | ||
| 453 | |||
| 454 | /** | ||
| 455 | * @brief ISR exit hook. | ||
| 456 | */ | ||
| 457 | #define CH_CFG_IRQ_EPILOGUE_HOOK() { \ | ||
| 458 | /* IRQ epilogue code here.*/ \ | ||
| 459 | } | ||
| 460 | |||
| 461 | /** | ||
| 462 | * @brief Idle thread enter hook. | ||
| 463 | * @note This hook is invoked within a critical zone, no OS functions | ||
| 464 | * should be invoked from here. | ||
| 465 | * @note This macro can be used to activate a power saving mode. | ||
| 466 | */ | ||
| 467 | #define CH_CFG_IDLE_ENTER_HOOK() { \ | ||
| 468 | /* Idle-enter code here.*/ \ | ||
| 469 | } | ||
| 470 | |||
| 471 | /** | ||
| 472 | * @brief Idle thread leave hook. | ||
| 473 | * @note This hook is invoked within a critical zone, no OS functions | ||
| 474 | * should be invoked from here. | ||
| 475 | * @note This macro can be used to deactivate a power saving mode. | ||
| 476 | */ | ||
| 477 | #define CH_CFG_IDLE_LEAVE_HOOK() { \ | ||
| 478 | /* Idle-leave code here.*/ \ | ||
| 479 | } | ||
| 480 | |||
| 481 | /** | ||
| 482 | * @brief Idle Loop hook. | ||
| 483 | * @details This hook is continuously invoked by the idle thread loop. | ||
| 484 | */ | ||
| 485 | #define CH_CFG_IDLE_LOOP_HOOK() { \ | ||
| 486 | /* Idle loop code here.*/ \ | ||
| 487 | } | ||
| 488 | |||
| 489 | /** | ||
| 490 | * @brief System tick event hook. | ||
| 491 | * @details This hook is invoked in the system tick handler immediately | ||
| 492 | * after processing the virtual timers queue. | ||
| 493 | */ | ||
| 494 | #define CH_CFG_SYSTEM_TICK_HOOK() { \ | ||
| 495 | /* System tick event code here.*/ \ | ||
| 496 | } | ||
| 497 | |||
| 498 | /** | ||
| 499 | * @brief System halt hook. | ||
| 500 | * @details This hook is invoked in case to a system halting error before | ||
| 501 | * the system is halted. | ||
| 502 | */ | ||
| 503 | #define CH_CFG_SYSTEM_HALT_HOOK(reason) { \ | ||
| 504 | /* System halt code here.*/ \ | ||
| 505 | } | ||
| 506 | |||
| 507 | /** | ||
| 508 | * @brief Trace hook. | ||
| 509 | * @details This hook is invoked each time a new record is written in the | ||
| 510 | * trace buffer. | ||
| 511 | */ | ||
| 512 | #define CH_CFG_TRACE_HOOK(tep) { \ | ||
| 513 | /* Trace code here.*/ \ | ||
| 514 | } | ||
| 515 | |||
| 516 | /** @} */ | ||
| 517 | |||
| 518 | /*===========================================================================*/ | ||
| 519 | /* Port-specific settings (override port settings defaulted in chcore.h). */ | ||
| 520 | /*===========================================================================*/ | ||
| 521 | |||
| 522 | #endif /* CHCONF_H */ | ||
| 523 | |||
| 524 | /** @} */ | ||
diff --git a/keyboards/retro_75/config.h b/keyboards/retro_75/config.h new file mode 100644 index 000000000..a6b8ec672 --- /dev/null +++ b/keyboards/retro_75/config.h | |||
| @@ -0,0 +1,249 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2019 zvecr<git@zvecr.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #pragma once | ||
| 19 | |||
| 20 | #include "config_common.h" | ||
| 21 | |||
| 22 | /* USB Device descriptor parameter */ | ||
| 23 | #define VENDOR_ID 0xFEED | ||
| 24 | #define PRODUCT_ID 0x5275 | ||
| 25 | #define DEVICE_VER 0x0001 | ||
| 26 | #define MANUFACTURER PheonixStarr | ||
| 27 | #define PRODUCT Retro75 | ||
| 28 | #define DESCRIPTION A custom 75% keyboard | ||
| 29 | |||
| 30 | /* key matrix size */ | ||
| 31 | #define MATRIX_ROWS 6 | ||
| 32 | #define MATRIX_COLS 16 | ||
| 33 | |||
| 34 | /* | ||
| 35 | * Keyboard Matrix Assignments | ||
| 36 | * | ||
| 37 | * Change this to how you wired your keyboard | ||
| 38 | * COLS: AVR pins used for columns, left to right | ||
| 39 | * ROWS: AVR pins used for rows, top to bottom | ||
| 40 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
| 41 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
| 42 | * | ||
| 43 | */ | ||
| 44 | #define MATRIX_ROW_PINS { A8, B15, B14, B13, B12, B8 } | ||
| 45 | #define MATRIX_COL_PINS { A5, A4, A3, F0, C15, C14, C13, A6, B11, B10, B2, B1, B0, A7, A14, A15 } | ||
| 46 | #define UNUSED_PINS | ||
| 47 | |||
| 48 | /* COL2ROW, ROW2COL*/ | ||
| 49 | #define DIODE_DIRECTION COL2ROW | ||
| 50 | |||
| 51 | /* | ||
| 52 | * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN. | ||
| 53 | */ | ||
| 54 | //#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 | ||
| 55 | |||
| 56 | // #define BACKLIGHT_PIN B7 | ||
| 57 | // #define BACKLIGHT_BREATHING | ||
| 58 | // #define BACKLIGHT_LEVELS 3 | ||
| 59 | |||
| 60 | #define RGB_DI_PIN A9 | ||
| 61 | // #ifdef RGB_DI_PIN | ||
| 62 | #define RGBLED_NUM 18 | ||
| 63 | // #define RGBLIGHT_HUE_STEP 8 | ||
| 64 | // #define RGBLIGHT_SAT_STEP 8 | ||
| 65 | // #define RGBLIGHT_VAL_STEP 8 | ||
| 66 | // #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
| 67 | // #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
| 68 | // /*== all animations enable ==*/ | ||
| 69 | #define RGBLIGHT_ANIMATIONS | ||
| 70 | // /*== or choose animations ==*/ | ||
| 71 | // #define RGBLIGHT_EFFECT_BREATHING | ||
| 72 | // #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
| 73 | // #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
| 74 | // #define RGBLIGHT_EFFECT_SNAKE | ||
| 75 | // #define RGBLIGHT_EFFECT_KNIGHT | ||
| 76 | // #define RGBLIGHT_EFFECT_CHRISTMAS | ||
| 77 | // #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
| 78 | // #define RGBLIGHT_EFFECT_RGB_TEST | ||
| 79 | // #define RGBLIGHT_EFFECT_ALTERNATING | ||
| 80 | // /*== customize breathing effect ==*/ | ||
| 81 | // /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/ | ||
| 82 | // #define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64 | ||
| 83 | // /*==== use exp() and sin() ====*/ | ||
| 84 | // #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 | ||
| 85 | // #define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 | ||
| 86 | // #endif | ||
| 87 | |||
| 88 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 89 | #define DEBOUNCE 5 | ||
| 90 | |||
| 91 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 92 | //#define MATRIX_HAS_GHOST | ||
| 93 | |||
| 94 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 95 | #define LOCKING_SUPPORT_ENABLE | ||
| 96 | /* Locking resynchronize hack */ | ||
| 97 | #define LOCKING_RESYNC_ENABLE | ||
| 98 | |||
| 99 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
| 100 | * This is userful for the Windows task manager shortcut (ctrl+shift+esc). | ||
| 101 | */ | ||
| 102 | // #define GRAVE_ESC_CTRL_OVERRIDE | ||
| 103 | |||
| 104 | /* | ||
| 105 | * Force NKRO | ||
| 106 | * | ||
| 107 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 108 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 109 | * makefile for this to work.) | ||
| 110 | * | ||
| 111 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 112 | * until the next keyboard reset. | ||
| 113 | * | ||
| 114 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 115 | * fully operational during normal computer usage. | ||
| 116 | * | ||
| 117 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 118 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 119 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 120 | * power-up. | ||
| 121 | * | ||
| 122 | */ | ||
| 123 | //#define FORCE_NKRO | ||
| 124 | |||
| 125 | /* | ||
| 126 | * Magic Key Options | ||
| 127 | * | ||
| 128 | * Magic keys are hotkey commands that allow control over firmware functions of | ||
| 129 | * the keyboard. They are best used in combination with the HID Listen program, | ||
| 130 | * found here: https://www.pjrc.com/teensy/hid_listen.html | ||
| 131 | * | ||
| 132 | * The options below allow the magic key functionality to be changed. This is | ||
| 133 | * useful if your keyboard/keypad is missing keys and you want magic key support. | ||
| 134 | * | ||
| 135 | */ | ||
| 136 | |||
| 137 | /* key combination for magic key command */ | ||
| 138 | /* defined by default; to change, uncomment and set to the combination you want */ | ||
| 139 | // #define IS_COMMAND() (get_mods() == MOD_MASK_SHIFT) | ||
| 140 | |||
| 141 | /* control how magic key switches layers */ | ||
| 142 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true | ||
| 143 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true | ||
| 144 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false | ||
| 145 | |||
| 146 | /* override magic key keymap */ | ||
| 147 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS | ||
| 148 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS | ||
| 149 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM | ||
| 150 | //#define MAGIC_KEY_HELP H | ||
| 151 | //#define MAGIC_KEY_HELP_ALT SLASH | ||
| 152 | //#define MAGIC_KEY_DEBUG D | ||
| 153 | //#define MAGIC_KEY_DEBUG_MATRIX X | ||
| 154 | //#define MAGIC_KEY_DEBUG_KBD K | ||
| 155 | //#define MAGIC_KEY_DEBUG_MOUSE M | ||
| 156 | //#define MAGIC_KEY_VERSION V | ||
| 157 | //#define MAGIC_KEY_STATUS S | ||
| 158 | //#define MAGIC_KEY_CONSOLE C | ||
| 159 | //#define MAGIC_KEY_LAYER0 0 | ||
| 160 | //#define MAGIC_KEY_LAYER0_ALT GRAVE | ||
| 161 | //#define MAGIC_KEY_LAYER1 1 | ||
| 162 | //#define MAGIC_KEY_LAYER2 2 | ||
| 163 | //#define MAGIC_KEY_LAYER3 3 | ||
| 164 | //#define MAGIC_KEY_LAYER4 4 | ||
| 165 | //#define MAGIC_KEY_LAYER5 5 | ||
| 166 | //#define MAGIC_KEY_LAYER6 6 | ||
| 167 | //#define MAGIC_KEY_LAYER7 7 | ||
| 168 | //#define MAGIC_KEY_LAYER8 8 | ||
| 169 | //#define MAGIC_KEY_LAYER9 9 | ||
| 170 | //#define MAGIC_KEY_BOOTLOADER B | ||
| 171 | //#define MAGIC_KEY_BOOTLOADER_ALT ESC | ||
| 172 | //#define MAGIC_KEY_LOCK CAPS | ||
| 173 | //#define MAGIC_KEY_EEPROM E | ||
| 174 | //#define MAGIC_KEY_EEPROM_CLEAR BSPACE | ||
| 175 | //#define MAGIC_KEY_NKRO N | ||
| 176 | //#define MAGIC_KEY_SLEEP_LED Z | ||
| 177 | |||
| 178 | /* | ||
| 179 | * Feature disable options | ||
| 180 | * These options are also useful to firmware size reduction. | ||
| 181 | */ | ||
| 182 | |||
| 183 | /* disable debug print */ | ||
| 184 | //#define NO_DEBUG | ||
| 185 | |||
| 186 | /* disable print */ | ||
| 187 | //#define NO_PRINT | ||
| 188 | |||
| 189 | /* disable action features */ | ||
| 190 | //#define NO_ACTION_LAYER | ||
| 191 | //#define NO_ACTION_TAPPING | ||
| 192 | //#define NO_ACTION_ONESHOT | ||
| 193 | //#define NO_ACTION_MACRO | ||
| 194 | //#define NO_ACTION_FUNCTION | ||
| 195 | |||
| 196 | /* | ||
| 197 | * MIDI options | ||
| 198 | */ | ||
| 199 | |||
| 200 | /* Prevent use of disabled MIDI features in the keymap */ | ||
| 201 | //#define MIDI_ENABLE_STRICT 1 | ||
| 202 | |||
| 203 | /* enable basic MIDI features: | ||
| 204 | - MIDI notes can be sent when in Music mode is on | ||
| 205 | */ | ||
| 206 | //#define MIDI_BASIC | ||
| 207 | |||
| 208 | /* enable advanced MIDI features: | ||
| 209 | - MIDI notes can be added to the keymap | ||
| 210 | - Octave shift and transpose | ||
| 211 | - Virtual sustain, portamento, and modulation wheel | ||
| 212 | - etc. | ||
| 213 | */ | ||
| 214 | //#define MIDI_ADVANCED | ||
| 215 | |||
| 216 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
| 217 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
| 218 | |||
| 219 | /* | ||
| 220 | * HD44780 LCD Display Configuration | ||
| 221 | */ | ||
| 222 | /* | ||
| 223 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 224 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 225 | |||
| 226 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 227 | |||
| 228 | #if LCD_IO_MODE | ||
| 229 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 230 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 231 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 232 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 233 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 234 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 235 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 236 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 237 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 238 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 239 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 240 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 241 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 242 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 243 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 244 | #endif | ||
| 245 | */ | ||
| 246 | |||
| 247 | /* Bootmagic Lite key configuration */ | ||
| 248 | // #define BOOTMAGIC_LITE_ROW 0 | ||
| 249 | // #define BOOTMAGIC_LITE_COLUMN 0 | ||
diff --git a/keyboards/retro_75/halconf.h b/keyboards/retro_75/halconf.h new file mode 100644 index 000000000..8b9724b1a --- /dev/null +++ b/keyboards/retro_75/halconf.h | |||
| @@ -0,0 +1,353 @@ | |||
| 1 | /* | ||
| 2 | ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio | ||
| 3 | |||
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); | ||
| 5 | you may not use this file except in compliance with the License. | ||
| 6 | You may obtain a copy of the License at | ||
| 7 | |||
| 8 | http://www.apache.org/licenses/LICENSE-2.0 | ||
| 9 | |||
| 10 | Unless required by applicable law or agreed to in writing, software | ||
| 11 | distributed under the License is distributed on an "AS IS" BASIS, | ||
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| 13 | See the License for the specific language governing permissions and | ||
| 14 | limitations under the License. | ||
| 15 | */ | ||
| 16 | |||
| 17 | /** | ||
| 18 | * @file templates/halconf.h | ||
| 19 | * @brief HAL configuration header. | ||
| 20 | * @details HAL configuration file, this file allows to enable or disable the | ||
| 21 | * various device drivers from your application. You may also use | ||
| 22 | * this file in order to override the device drivers default settings. | ||
| 23 | * | ||
| 24 | * @addtogroup HAL_CONF | ||
| 25 | * @{ | ||
| 26 | */ | ||
| 27 | |||
| 28 | #ifndef _HALCONF_H_ | ||
| 29 | #define _HALCONF_H_ | ||
| 30 | |||
| 31 | #include "mcuconf.h" | ||
| 32 | |||
| 33 | /** | ||
| 34 | * @brief Enables the PAL subsystem. | ||
| 35 | */ | ||
| 36 | #if !defined(HAL_USE_PAL) || defined(__DOXYGEN__) | ||
| 37 | #define HAL_USE_PAL TRUE | ||
| 38 | #endif | ||
| 39 | |||
| 40 | /** | ||
| 41 | * @brief Enables the ADC subsystem. | ||
| 42 | */ | ||
| 43 | #if !defined(HAL_USE_ADC) || defined(__DOXYGEN__) | ||
| 44 | #define HAL_USE_ADC FALSE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | /** | ||
| 48 | * @brief Enables the CAN subsystem. | ||
| 49 | */ | ||
| 50 | #if !defined(HAL_USE_CAN) || defined(__DOXYGEN__) | ||
| 51 | #define HAL_USE_CAN FALSE | ||
| 52 | #endif | ||
| 53 | |||
| 54 | /** | ||
| 55 | * @brief Enables the DAC subsystem. | ||
| 56 | */ | ||
| 57 | #if !defined(HAL_USE_DAC) || defined(__DOXYGEN__) | ||
| 58 | #define HAL_USE_DAC FALSE | ||
| 59 | #endif | ||
| 60 | |||
| 61 | /** | ||
| 62 | * @brief Enables the EXT subsystem. | ||
| 63 | */ | ||
| 64 | #if !defined(HAL_USE_EXT) || defined(__DOXYGEN__) | ||
| 65 | #define HAL_USE_EXT FALSE | ||
| 66 | #endif | ||
| 67 | |||
| 68 | /** | ||
| 69 | * @brief Enables the GPT subsystem. | ||
| 70 | */ | ||
| 71 | #if !defined(HAL_USE_GPT) || defined(__DOXYGEN__) | ||
| 72 | #define HAL_USE_GPT FALSE | ||
| 73 | #endif | ||
| 74 | |||
| 75 | /** | ||
| 76 | * @brief Enables the I2C subsystem. | ||
| 77 | */ | ||
| 78 | #if !defined(HAL_USE_I2C) || defined(__DOXYGEN__) | ||
| 79 | #define HAL_USE_I2C FALSE | ||
| 80 | #endif | ||
| 81 | |||
| 82 | /** | ||
| 83 | * @brief Enables the I2S subsystem. | ||
| 84 | */ | ||
| 85 | #if !defined(HAL_USE_I2S) || defined(__DOXYGEN__) | ||
| 86 | #define HAL_USE_I2S FALSE | ||
| 87 | #endif | ||
| 88 | |||
| 89 | /** | ||
| 90 | * @brief Enables the ICU subsystem. | ||
| 91 | */ | ||
| 92 | #if !defined(HAL_USE_ICU) || defined(__DOXYGEN__) | ||
| 93 | #define HAL_USE_ICU FALSE | ||
| 94 | #endif | ||
| 95 | |||
| 96 | /** | ||
| 97 | * @brief Enables the MAC subsystem. | ||
| 98 | */ | ||
| 99 | #if !defined(HAL_USE_MAC) || defined(__DOXYGEN__) | ||
| 100 | #define HAL_USE_MAC FALSE | ||
| 101 | #endif | ||
| 102 | |||
| 103 | /** | ||
| 104 | * @brief Enables the MMC_SPI subsystem. | ||
| 105 | */ | ||
| 106 | #if !defined(HAL_USE_MMC_SPI) || defined(__DOXYGEN__) | ||
| 107 | #define HAL_USE_MMC_SPI FALSE | ||
| 108 | #endif | ||
| 109 | |||
| 110 | /** | ||
| 111 | * @brief Enables the PWM subsystem. | ||
| 112 | */ | ||
| 113 | #if !defined(HAL_USE_PWM) || defined(__DOXYGEN__) | ||
| 114 | #define HAL_USE_PWM FALSE | ||
| 115 | #endif | ||
| 116 | |||
| 117 | /** | ||
| 118 | * @brief Enables the RTC subsystem. | ||
| 119 | */ | ||
| 120 | #if !defined(HAL_USE_RTC) || defined(__DOXYGEN__) | ||
| 121 | #define HAL_USE_RTC FALSE | ||
| 122 | #endif | ||
| 123 | |||
| 124 | /** | ||
| 125 | * @brief Enables the SDC subsystem. | ||
| 126 | */ | ||
| 127 | #if !defined(HAL_USE_SDC) || defined(__DOXYGEN__) | ||
| 128 | #define HAL_USE_SDC FALSE | ||
| 129 | #endif | ||
| 130 | |||
| 131 | /** | ||
| 132 | * @brief Enables the SERIAL subsystem. | ||
| 133 | */ | ||
| 134 | #if !defined(HAL_USE_SERIAL) || defined(__DOXYGEN__) | ||
| 135 | #define HAL_USE_SERIAL FALSE | ||
| 136 | #endif | ||
| 137 | |||
| 138 | /** | ||
| 139 | * @brief Enables the SERIAL over USB subsystem. | ||
| 140 | */ | ||
| 141 | #if !defined(HAL_USE_SERIAL_USB) || defined(__DOXYGEN__) | ||
| 142 | #define HAL_USE_SERIAL_USB FALSE | ||
| 143 | #endif | ||
| 144 | |||
| 145 | /** | ||
| 146 | * @brief Enables the SPI subsystem. | ||
| 147 | */ | ||
| 148 | #if !defined(HAL_USE_SPI) || defined(__DOXYGEN__) | ||
| 149 | #define HAL_USE_SPI FALSE | ||
| 150 | #endif | ||
| 151 | |||
| 152 | /** | ||
| 153 | * @brief Enables the UART subsystem. | ||
| 154 | */ | ||
| 155 | #if !defined(HAL_USE_UART) || defined(__DOXYGEN__) | ||
| 156 | #define HAL_USE_UART FALSE | ||
| 157 | #endif | ||
| 158 | |||
| 159 | /** | ||
| 160 | * @brief Enables the USB subsystem. | ||
| 161 | */ | ||
| 162 | #if !defined(HAL_USE_USB) || defined(__DOXYGEN__) | ||
| 163 | #define HAL_USE_USB TRUE | ||
| 164 | #endif | ||
| 165 | |||
| 166 | /** | ||
| 167 | * @brief Enables the WDG subsystem. | ||
| 168 | */ | ||
| 169 | #if !defined(HAL_USE_WDG) || defined(__DOXYGEN__) | ||
| 170 | #define HAL_USE_WDG FALSE | ||
| 171 | #endif | ||
| 172 | |||
| 173 | /*===========================================================================*/ | ||
| 174 | /* ADC driver related settings. */ | ||
| 175 | /*===========================================================================*/ | ||
| 176 | |||
| 177 | /** | ||
| 178 | * @brief Enables synchronous APIs. | ||
| 179 | * @note Disabling this option saves both code and data space. | ||
| 180 | */ | ||
| 181 | #if !defined(ADC_USE_WAIT) || defined(__DOXYGEN__) | ||
| 182 | #define ADC_USE_WAIT TRUE | ||
| 183 | #endif | ||
| 184 | |||
| 185 | /** | ||
| 186 | * @brief Enables the @p adcAcquireBus() and @p adcReleaseBus() APIs. | ||
| 187 | * @note Disabling this option saves both code and data space. | ||
| 188 | */ | ||
| 189 | #if !defined(ADC_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__) | ||
| 190 | #define ADC_USE_MUTUAL_EXCLUSION TRUE | ||
| 191 | #endif | ||
| 192 | |||
| 193 | /*===========================================================================*/ | ||
| 194 | /* CAN driver related settings. */ | ||
| 195 | /*===========================================================================*/ | ||
| 196 | |||
| 197 | /** | ||
| 198 | * @brief Sleep mode related APIs inclusion switch. | ||
| 199 | */ | ||
| 200 | #if !defined(CAN_USE_SLEEP_MODE) || defined(__DOXYGEN__) | ||
| 201 | #define CAN_USE_SLEEP_MODE TRUE | ||
| 202 | #endif | ||
| 203 | |||
| 204 | /*===========================================================================*/ | ||
| 205 | /* I2C driver related settings. */ | ||
| 206 | /*===========================================================================*/ | ||
| 207 | |||
| 208 | /** | ||
| 209 | * @brief Enables the mutual exclusion APIs on the I2C bus. | ||
| 210 | */ | ||
| 211 | #if !defined(I2C_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__) | ||
| 212 | #define I2C_USE_MUTUAL_EXCLUSION TRUE | ||
| 213 | #endif | ||
| 214 | |||
| 215 | /*===========================================================================*/ | ||
| 216 | /* MAC driver related settings. */ | ||
| 217 | /*===========================================================================*/ | ||
| 218 | |||
| 219 | /** | ||
| 220 | * @brief Enables an event sources for incoming packets. | ||
| 221 | */ | ||
| 222 | #if !defined(MAC_USE_ZERO_COPY) || defined(__DOXYGEN__) | ||
| 223 | #define MAC_USE_ZERO_COPY FALSE | ||
| 224 | #endif | ||
| 225 | |||
| 226 | /** | ||
| 227 | * @brief Enables an event sources for incoming packets. | ||
| 228 | */ | ||
| 229 | #if !defined(MAC_USE_EVENTS) || defined(__DOXYGEN__) | ||
| 230 | #define MAC_USE_EVENTS TRUE | ||
| 231 | #endif | ||
| 232 | |||
| 233 | /*===========================================================================*/ | ||
| 234 | /* MMC_SPI driver related settings. */ | ||
| 235 | /*===========================================================================*/ | ||
| 236 | |||
| 237 | /** | ||
| 238 | * @brief Delays insertions. | ||
| 239 | * @details If enabled this options inserts delays into the MMC waiting | ||
| 240 | * routines releasing some extra CPU time for the threads with | ||
| 241 | * lower priority, this may slow down the driver a bit however. | ||
| 242 | * This option is recommended also if the SPI driver does not | ||
| 243 | * use a DMA channel and heavily loads the CPU. | ||
| 244 | */ | ||
| 245 | #if !defined(MMC_NICE_WAITING) || defined(__DOXYGEN__) | ||
| 246 | #define MMC_NICE_WAITING TRUE | ||
| 247 | #endif | ||
| 248 | |||
| 249 | /*===========================================================================*/ | ||
| 250 | /* SDC driver related settings. */ | ||
| 251 | /*===========================================================================*/ | ||
| 252 | |||
| 253 | /** | ||
| 254 | * @brief Number of initialization attempts before rejecting the card. | ||
| 255 | * @note Attempts are performed at 10mS intervals. | ||
| 256 | */ | ||
| 257 | #if !defined(SDC_INIT_RETRY) || defined(__DOXYGEN__) | ||
| 258 | #define SDC_INIT_RETRY 100 | ||
| 259 | #endif | ||
| 260 | |||
| 261 | /** | ||
| 262 | * @brief Include support for MMC cards. | ||
| 263 | * @note MMC support is not yet implemented so this option must be kept | ||
| 264 | * at @p FALSE. | ||
| 265 | */ | ||
| 266 | #if !defined(SDC_MMC_SUPPORT) || defined(__DOXYGEN__) | ||
| 267 | #define SDC_MMC_SUPPORT FALSE | ||
| 268 | #endif | ||
| 269 | |||
| 270 | /** | ||
| 271 | * @brief Delays insertions. | ||
| 272 | * @details If enabled this options inserts delays into the MMC waiting | ||
| 273 | * routines releasing some extra CPU time for the threads with | ||
| 274 | * lower priority, this may slow down the driver a bit however. | ||
| 275 | */ | ||
| 276 | #if !defined(SDC_NICE_WAITING) || defined(__DOXYGEN__) | ||
| 277 | #define SDC_NICE_WAITING TRUE | ||
| 278 | #endif | ||
| 279 | |||
| 280 | /*===========================================================================*/ | ||
| 281 | /* SERIAL driver related settings. */ | ||
| 282 | /*===========================================================================*/ | ||
| 283 | |||
| 284 | /** | ||
| 285 | * @brief Default bit rate. | ||
| 286 | * @details Configuration parameter, this is the baud rate selected for the | ||
| 287 | * default configuration. | ||
| 288 | */ | ||
| 289 | #if !defined(SERIAL_DEFAULT_BITRATE) || defined(__DOXYGEN__) | ||
| 290 | #define SERIAL_DEFAULT_BITRATE 38400 | ||
| 291 | #endif | ||
| 292 | |||
| 293 | /** | ||
| 294 | * @brief Serial buffers size. | ||
| 295 | * @details Configuration parameter, you can change the depth of the queue | ||
| 296 | * buffers depending on the requirements of your application. | ||
| 297 | * @note The default is 64 bytes for both the transmission and receive | ||
| 298 | * buffers. | ||
| 299 | */ | ||
| 300 | #if !defined(SERIAL_BUFFERS_SIZE) || defined(__DOXYGEN__) | ||
| 301 | #define SERIAL_BUFFERS_SIZE 16 | ||
| 302 | #endif | ||
| 303 | |||
| 304 | /*===========================================================================*/ | ||
| 305 | /* SERIAL_USB driver related setting. */ | ||
| 306 | /*===========================================================================*/ | ||
| 307 | |||
| 308 | /** | ||
| 309 | * @brief Serial over USB buffers size. | ||
| 310 | * @details Configuration parameter, the buffer size must be a multiple of | ||
| 311 | * the USB data endpoint maximum packet size. | ||
| 312 | * @note The default is 64 bytes for both the transmission and receive | ||
| 313 | * buffers. | ||
| 314 | */ | ||
| 315 | #if !defined(SERIAL_USB_BUFFERS_SIZE) || defined(__DOXYGEN__) | ||
| 316 | #define SERIAL_USB_BUFFERS_SIZE 1 | ||
| 317 | #endif | ||
| 318 | |||
| 319 | /*===========================================================================*/ | ||
| 320 | /* SPI driver related settings. */ | ||
| 321 | /*===========================================================================*/ | ||
| 322 | |||
| 323 | /** | ||
| 324 | * @brief Enables synchronous APIs. | ||
| 325 | * @note Disabling this option saves both code and data space. | ||
| 326 | */ | ||
| 327 | #if !defined(SPI_USE_WAIT) || defined(__DOXYGEN__) | ||
| 328 | #define SPI_USE_WAIT TRUE | ||
| 329 | #endif | ||
| 330 | |||
| 331 | /** | ||
| 332 | * @brief Enables the @p spiAcquireBus() and @p spiReleaseBus() APIs. | ||
| 333 | * @note Disabling this option saves both code and data space. | ||
| 334 | */ | ||
| 335 | #if !defined(SPI_USE_MUTUAL_EXCLUSION) || defined(__DOXYGEN__) | ||
| 336 | #define SPI_USE_MUTUAL_EXCLUSION TRUE | ||
| 337 | #endif | ||
| 338 | |||
| 339 | /*===========================================================================*/ | ||
| 340 | /* USB driver related settings. */ | ||
| 341 | /*===========================================================================*/ | ||
| 342 | |||
| 343 | /** | ||
| 344 | * @brief Enables synchronous APIs. | ||
| 345 | * @note Disabling this option saves both code and data space. | ||
| 346 | */ | ||
| 347 | #if !defined(USB_USE_WAIT) || defined(__DOXYGEN__) | ||
| 348 | #define USB_USE_WAIT TRUE | ||
| 349 | #endif | ||
| 350 | |||
| 351 | #endif /* _HALCONF_H_ */ | ||
| 352 | |||
| 353 | /** @} */ | ||
diff --git a/keyboards/retro_75/info.json b/keyboards/retro_75/info.json new file mode 100644 index 000000000..6a6253c37 --- /dev/null +++ b/keyboards/retro_75/info.json | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Retro75", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "zvecr", | ||
| 5 | "width": 16, | ||
| 6 | "height": 6.25, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT": { | ||
| 9 | "layout": [{"label":"Esc", "x":0, "y":0}, {"label":"F1", "x":1.5, "y":0}, {"label":"F2", "x":2.5, "y":0}, {"label":"F3", "x":3.5, "y":0}, {"label":"F4", "x":4.5, "y":0}, {"label":"F5", "x":6, "y":0}, {"label":"F6", "x":7, "y":0}, {"label":"F7", "x":8, "y":0}, {"label":"F8", "x":9, "y":0}, {"label":"F9", "x":10.5, "y":0}, {"label":"F10", "x":11.5, "y":0}, {"label":"F11", "x":12.5, "y":0}, {"label":"F12", "x":13.5, "y":0}, {"label":"Prt Sc", "x":15, "y":0}, {"label":"~", "x":0, "y":1.25}, {"label":"!", "x":1, "y":1.25}, {"label":"@", "x":2, "y":1.25}, {"label":"#", "x":3, "y":1.25}, {"label":"$", "x":4, "y":1.25}, {"label":"%", "x":5, "y":1.25}, {"label":"^", "x":6, "y":1.25}, {"label":"&", "x":7, "y":1.25}, {"label":"*", "x":8, "y":1.25}, {"label":"(", "x":9, "y":1.25}, {"label":")", "x":10, "y":1.25}, {"label":"_", "x":11, "y":1.25}, {"label":"+", "x":12, "y":1.25}, {"x":13, "y":1.25, "w":2}, {"label":"Delete", "x":15, "y":1.25}, {"label":"Tab", "x":0, "y":2.25, "w":1.5}, {"label":"Q", "x":1.5, "y":2.25}, {"label":"W", "x":2.5, "y":2.25}, {"label":"E", "x":3.5, "y":2.25}, {"label":"R", "x":4.5, "y":2.25}, {"label":"T", "x":5.5, "y":2.25}, {"label":"Y", "x":6.5, "y":2.25}, {"label":"U", "x":7.5, "y":2.25}, {"label":"I", "x":8.5, "y":2.25}, {"label":"O", "x":9.5, "y":2.25}, {"label":"P", "x":10.5, "y":2.25}, {"label":"{", "x":11.5, "y":2.25}, {"label":"}", "x":12.5, "y":2.25}, {"label":"|", "x":13.5, "y":2.25, "w":1.5}, {"label":"Page Up", "x":15, "y":2.25}, {"label":"Caps Lock", "x":0, "y":3.25, "w":1.75}, {"label":"A", "x":1.75, "y":3.25}, {"label":"S", "x":2.75, "y":3.25}, {"label":"D", "x":3.75, "y":3.25}, {"label":"F", "x":4.75, "y":3.25}, {"label":"G", "x":5.75, "y":3.25}, {"label":"H", "x":6.75, "y":3.25}, {"label":"J", "x":7.75, "y":3.25}, {"label":"K", "x":8.75, "y":3.25}, {"label":"L", "x":9.75, "y":3.25}, {"label":":", "x":10.75, "y":3.25}, {"label":"\"", "x":11.75, "y":3.25}, {"label":"Enter", "x":12.75, "y":3.25, "w":2.25}, {"label":"Page Down", "x":15, "y":3.25}, {"label":"Shift", "x":0, "y":4.25, "w":2.25}, {"label":"Z", "x":2.25, "y":4.25}, {"label":"X", "x":3.25, "y":4.25}, {"label":"C", "x":4.25, "y":4.25}, {"label":"V", "x":5.25, "y":4.25}, {"label":"B", "x":6.25, "y":4.25}, {"label":"N", "x":7.25, "y":4.25}, {"label":"M", "x":8.25, "y":4.25}, {"label":"<", "x":9.25, "y":4.25}, {"label":">", "x":10.25, "y":4.25}, {"label":"?", "x":11.25, "y":4.25}, {"label":"Shift", "x":12.25, "y":4.25, "w":1.75}, {"label":"\u2191", "x":14, "y":4.25}, {"label":"Fn", "x":15, "y":4.25}, {"label":"Ctrl", "x":0, "y":5.25, "w":1.5}, {"label":"Alt", "x":2.25, "y":5.25, "w":1.5}, {"x":3.75, "y":5.25, "w":7}, {"label":"Alt", "x":10.75, "y":5.25, "w":1.5}, {"label":"\u2190", "x":13, "y":5.25}, {"label":"\u2193", "x":14, "y":5.25}, {"label":"\u2192", "x":15, "y":5.25}] | ||
| 10 | }, | ||
| 11 | "LAYOUT_split_bs": { | ||
| 12 | "layout": [{"label":"Esc", "x":0, "y":0}, {"label":"F1", "x":1.5, "y":0}, {"label":"F2", "x":2.5, "y":0}, {"label":"F3", "x":3.5, "y":0}, {"label":"F4", "x":4.5, "y":0}, {"label":"F5", "x":6, "y":0}, {"label":"F6", "x":7, "y":0}, {"label":"F7", "x":8, "y":0}, {"label":"F8", "x":9, "y":0}, {"label":"F9", "x":10.5, "y":0}, {"label":"F10", "x":11.5, "y":0}, {"label":"F11", "x":12.5, "y":0}, {"label":"F12", "x":13.5, "y":0}, {"label":"Prt Sc", "x":15, "y":0}, {"label":"~", "x":0, "y":1.25}, {"label":"!", "x":1, "y":1.25}, {"label":"@", "x":2, "y":1.25}, {"label":"#", "x":3, "y":1.25}, {"label":"$", "x":4, "y":1.25}, {"label":"%", "x":5, "y":1.25}, {"label":"^", "x":6, "y":1.25}, {"label":"&", "x":7, "y":1.25}, {"label":"*", "x":8, "y":1.25}, {"label":"(", "x":9, "y":1.25}, {"label":")", "x":10, "y":1.25}, {"label":"_", "x":11, "y":1.25}, {"label":"+", "x":12, "y":1.25}, {"x":13, "y":1.25}, {"x":14, "y":1.25}, {"label":"Delete", "x":15, "y":1.25}, {"label":"Tab", "x":0, "y":2.25, "w":1.5}, {"label":"Q", "x":1.5, "y":2.25}, {"label":"W", "x":2.5, "y":2.25}, {"label":"E", "x":3.5, "y":2.25}, {"label":"R", "x":4.5, "y":2.25}, {"label":"T", "x":5.5, "y":2.25}, {"label":"Y", "x":6.5, "y":2.25}, {"label":"U", "x":7.5, "y":2.25}, {"label":"I", "x":8.5, "y":2.25}, {"label":"O", "x":9.5, "y":2.25}, {"label":"P", "x":10.5, "y":2.25}, {"label":"{", "x":11.5, "y":2.25}, {"label":"}", "x":12.5, "y":2.25}, {"label":"|", "x":13.5, "y":2.25, "w":1.5}, {"label":"Page Up", "x":15, "y":2.25}, {"label":"Caps Lock", "x":0, "y":3.25, "w":1.75}, {"label":"A", "x":1.75, "y":3.25}, {"label":"S", "x":2.75, "y":3.25}, {"label":"D", "x":3.75, "y":3.25}, {"label":"F", "x":4.75, "y":3.25}, {"label":"G", "x":5.75, "y":3.25}, {"label":"H", "x":6.75, "y":3.25}, {"label":"J", "x":7.75, "y":3.25}, {"label":"K", "x":8.75, "y":3.25}, {"label":"L", "x":9.75, "y":3.25}, {"label":":", "x":10.75, "y":3.25}, {"label":"\"", "x":11.75, "y":3.25}, {"label":"Enter", "x":12.75, "y":3.25, "w":2.25}, {"label":"Page Down", "x":15, "y":3.25}, {"label":"Shift", "x":0, "y":4.25, "w":2.25}, {"label":"Z", "x":2.25, "y":4.25}, {"label":"X", "x":3.25, "y":4.25}, {"label":"C", "x":4.25, "y":4.25}, {"label":"V", "x":5.25, "y":4.25}, {"label":"B", "x":6.25, "y":4.25}, {"label":"N", "x":7.25, "y":4.25}, {"label":"M", "x":8.25, "y":4.25}, {"label":"<", "x":9.25, "y":4.25}, {"label":">", "x":10.25, "y":4.25}, {"label":"?", "x":11.25, "y":4.25}, {"label":"Shift", "x":12.25, "y":4.25, "w":1.75}, {"label":"\u2191", "x":14, "y":4.25}, {"label":"Fn", "x":15, "y":4.25}, {"label":"Ctrl", "x":0, "y":5.25, "w":1.5}, {"label":"Alt", "x":2.25, "y":5.25, "w":1.5}, {"x":3.75, "y":5.25, "w":7}, {"label":"Alt", "x":10.75, "y":5.25, "w":1.5}, {"label":"\u2190", "x":13, "y":5.25}, {"label":"\u2193", "x":14, "y":5.25}, {"label":"\u2192", "x":15, "y":5.25}] | ||
| 13 | } | ||
| 14 | } | ||
| 15 | } \ No newline at end of file | ||
diff --git a/keyboards/retro_75/keymaps/default/keymap.c b/keyboards/retro_75/keymaps/default/keymap.c new file mode 100644 index 000000000..602eb695b --- /dev/null +++ b/keyboards/retro_75/keymaps/default/keymap.c | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | #include QMK_KEYBOARD_H | ||
| 2 | |||
| 3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 4 | |||
| 5 | [0] = LAYOUT( | ||
| 6 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, | ||
| 7 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_DEL, | ||
| 8 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_PGUP, | ||
| 9 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGDN, | ||
| 10 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, MO(1), | ||
| 11 | KC_LCTL, KC_LALT, KC_SPC, KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 12 | ), | ||
| 13 | |||
| 14 | [1] = LAYOUT( | ||
| 15 | RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 16 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 17 | _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, _______, _______, _______, _______, | ||
| 18 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 19 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 20 | _______, _______, _______, _______, _______, _______, _______ | ||
| 21 | ), | ||
| 22 | }; | ||
diff --git a/keyboards/retro_75/keymaps/split_backspace/keymap.c b/keyboards/retro_75/keymaps/split_backspace/keymap.c new file mode 100644 index 000000000..58993b8bb --- /dev/null +++ b/keyboards/retro_75/keymaps/split_backspace/keymap.c | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | #include QMK_KEYBOARD_H | ||
| 2 | |||
| 3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 4 | |||
| 5 | [0] = LAYOUT_split_bs( | ||
| 6 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, | ||
| 7 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_BSPC, KC_DEL, | ||
| 8 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_PGUP, | ||
| 9 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGDN, | ||
| 10 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, MO(1), | ||
| 11 | KC_LCTL, KC_LALT, KC_SPC, KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 12 | ), | ||
| 13 | |||
| 14 | [1] = LAYOUT_split_bs( | ||
| 15 | RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 16 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 17 | _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, _______, _______, _______, _______, | ||
| 18 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 19 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 20 | _______, _______, _______, _______, _______, _______, _______ | ||
| 21 | ), | ||
| 22 | }; | ||
diff --git a/keyboards/retro_75/mcuconf.h b/keyboards/retro_75/mcuconf.h new file mode 100644 index 000000000..faca3defd --- /dev/null +++ b/keyboards/retro_75/mcuconf.h | |||
| @@ -0,0 +1,171 @@ | |||
| 1 | /* | ||
| 2 | ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio | ||
| 3 | |||
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); | ||
| 5 | you may not use this file except in compliance with the License. | ||
| 6 | You may obtain a copy of the License at | ||
| 7 | |||
| 8 | http://www.apache.org/licenses/LICENSE-2.0 | ||
| 9 | |||
| 10 | Unless required by applicable law or agreed to in writing, software | ||
| 11 | distributed under the License is distributed on an "AS IS" BASIS, | ||
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| 13 | See the License for the specific language governing permissions and | ||
| 14 | limitations under the License. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #ifndef _MCUCONF_H_ | ||
| 18 | #define _MCUCONF_H_ | ||
| 19 | |||
| 20 | /* | ||
| 21 | * STM32F0xx drivers configuration. | ||
| 22 | * The following settings override the default settings present in | ||
| 23 | * the various device driver implementation headers. | ||
| 24 | * Note that the settings for each driver only have effect if the whole | ||
| 25 | * driver is enabled in halconf.h. | ||
| 26 | * | ||
| 27 | * IRQ priorities: | ||
| 28 | * 3...0 Lowest...Highest. | ||
| 29 | * | ||
| 30 | * DMA priorities: | ||
| 31 | * 0...3 Lowest...Highest. | ||
| 32 | */ | ||
| 33 | |||
| 34 | #define STM32F0xx_MCUCONF | ||
| 35 | |||
| 36 | /* | ||
| 37 | * HAL driver system settings. | ||
| 38 | */ | ||
| 39 | #define STM32_NO_INIT FALSE | ||
| 40 | #define STM32_PVD_ENABLE FALSE | ||
| 41 | #define STM32_PLS STM32_PLS_LEV0 | ||
| 42 | #define STM32_HSI_ENABLED TRUE | ||
| 43 | #define STM32_HSI14_ENABLED TRUE | ||
| 44 | #define STM32_HSI48_ENABLED FALSE | ||
| 45 | #define STM32_LSI_ENABLED TRUE | ||
| 46 | #define STM32_HSE_ENABLED FALSE | ||
| 47 | #define STM32_LSE_ENABLED FALSE | ||
| 48 | #define STM32_SW STM32_SW_PLL | ||
| 49 | #define STM32_PLLSRC STM32_PLLSRC_HSI_DIV2 | ||
| 50 | #define STM32_PREDIV_VALUE 1 | ||
| 51 | #define STM32_PLLMUL_VALUE 12 | ||
| 52 | #define STM32_HPRE STM32_HPRE_DIV1 | ||
| 53 | #define STM32_PPRE STM32_PPRE_DIV1 | ||
| 54 | #define STM32_ADCSW STM32_ADCSW_HSI14 | ||
| 55 | #define STM32_ADCPRE STM32_ADCPRE_DIV4 | ||
| 56 | #define STM32_MCOSEL STM32_MCOSEL_NOCLOCK | ||
| 57 | #define STM32_ADCPRE STM32_ADCPRE_DIV4 | ||
| 58 | #define STM32_ADCSW STM32_ADCSW_HSI14 | ||
| 59 | #define STM32_USBSW STM32_USBSW_HSI48 | ||
| 60 | #define STM32_CECSW STM32_CECSW_HSI | ||
| 61 | #define STM32_I2C1SW STM32_I2C1SW_HSI | ||
| 62 | #define STM32_USART1SW STM32_USART1SW_PCLK | ||
| 63 | #define STM32_RTCSEL STM32_RTCSEL_LSI | ||
| 64 | |||
| 65 | /* | ||
| 66 | * ADC driver system settings. | ||
| 67 | */ | ||
| 68 | #define STM32_ADC_USE_ADC1 FALSE | ||
| 69 | #define STM32_ADC_ADC1_DMA_PRIORITY 2 | ||
| 70 | #define STM32_ADC_IRQ_PRIORITY 2 | ||
| 71 | #define STM32_ADC_ADC1_DMA_IRQ_PRIORITY 2 | ||
| 72 | |||
| 73 | /* | ||
| 74 | * EXT driver system settings. | ||
| 75 | */ | ||
| 76 | #define STM32_EXT_EXTI0_1_IRQ_PRIORITY 3 | ||
| 77 | #define STM32_EXT_EXTI2_3_IRQ_PRIORITY 3 | ||
| 78 | #define STM32_EXT_EXTI4_15_IRQ_PRIORITY 3 | ||
| 79 | #define STM32_EXT_EXTI16_IRQ_PRIORITY 3 | ||
| 80 | #define STM32_EXT_EXTI17_IRQ_PRIORITY 3 | ||
| 81 | |||
| 82 | /* | ||
| 83 | * GPT driver system settings. | ||
| 84 | */ | ||
| 85 | #define STM32_GPT_USE_TIM1 FALSE | ||
| 86 | #define STM32_GPT_USE_TIM2 FALSE | ||
| 87 | #define STM32_GPT_USE_TIM3 FALSE | ||
| 88 | #define STM32_GPT_USE_TIM14 FALSE | ||
| 89 | #define STM32_GPT_TIM1_IRQ_PRIORITY 2 | ||
| 90 | #define STM32_GPT_TIM2_IRQ_PRIORITY 2 | ||
| 91 | #define STM32_GPT_TIM3_IRQ_PRIORITY 2 | ||
| 92 | #define STM32_GPT_TIM14_IRQ_PRIORITY 2 | ||
| 93 | |||
| 94 | /* | ||
| 95 | * I2C driver system settings. | ||
| 96 | */ | ||
| 97 | #define STM32_I2C_USE_I2C1 FALSE | ||
| 98 | #define STM32_I2C_USE_I2C2 FALSE | ||
| 99 | #define STM32_I2C_BUSY_TIMEOUT 50 | ||
| 100 | #define STM32_I2C_I2C1_IRQ_PRIORITY 3 | ||
| 101 | #define STM32_I2C_I2C2_IRQ_PRIORITY 3 | ||
| 102 | #define STM32_I2C_USE_DMA TRUE | ||
| 103 | #define STM32_I2C_I2C1_DMA_PRIORITY 1 | ||
| 104 | #define STM32_I2C_I2C2_DMA_PRIORITY 1 | ||
| 105 | #define STM32_I2C_DMA_ERROR_HOOK(i2cp) osalSysHalt("DMA failure") | ||
| 106 | |||
| 107 | /* | ||
| 108 | * ICU driver system settings. | ||
| 109 | */ | ||
| 110 | #define STM32_ICU_USE_TIM1 FALSE | ||
| 111 | #define STM32_ICU_USE_TIM2 FALSE | ||
| 112 | #define STM32_ICU_USE_TIM3 FALSE | ||
| 113 | #define STM32_ICU_TIM1_IRQ_PRIORITY 3 | ||
| 114 | #define STM32_ICU_TIM2_IRQ_PRIORITY 3 | ||
| 115 | #define STM32_ICU_TIM3_IRQ_PRIORITY 3 | ||
| 116 | |||
| 117 | /* | ||
| 118 | * PWM driver system settings. | ||
| 119 | */ | ||
| 120 | #define STM32_PWM_USE_ADVANCED FALSE | ||
| 121 | #define STM32_PWM_USE_TIM1 FALSE | ||
| 122 | #define STM32_PWM_USE_TIM2 FALSE | ||
| 123 | #define STM32_PWM_USE_TIM3 FALSE | ||
| 124 | #define STM32_PWM_TIM1_IRQ_PRIORITY 3 | ||
| 125 | #define STM32_PWM_TIM2_IRQ_PRIORITY 3 | ||
| 126 | #define STM32_PWM_TIM3_IRQ_PRIORITY 3 | ||
| 127 | |||
| 128 | /* | ||
| 129 | * SERIAL driver system settings. | ||
| 130 | */ | ||
| 131 | #define STM32_SERIAL_USE_USART1 FALSE | ||
| 132 | #define STM32_SERIAL_USE_USART2 FALSE | ||
| 133 | #define STM32_SERIAL_USART1_PRIORITY 3 | ||
| 134 | #define STM32_SERIAL_USART2_PRIORITY 3 | ||
| 135 | |||
| 136 | /* | ||
| 137 | * SPI driver system settings. | ||
| 138 | */ | ||
| 139 | #define STM32_SPI_USE_SPI1 FALSE | ||
| 140 | #define STM32_SPI_USE_SPI2 FALSE | ||
| 141 | #define STM32_SPI_SPI1_DMA_PRIORITY 1 | ||
| 142 | #define STM32_SPI_SPI2_DMA_PRIORITY 1 | ||
| 143 | #define STM32_SPI_SPI1_IRQ_PRIORITY 2 | ||
| 144 | #define STM32_SPI_SPI2_IRQ_PRIORITY 2 | ||
| 145 | #define STM32_SPI_DMA_ERROR_HOOK(spip) osalSysHalt("DMA failure") | ||
| 146 | |||
| 147 | /* | ||
| 148 | * ST driver system settings. | ||
| 149 | */ | ||
| 150 | #define STM32_ST_IRQ_PRIORITY 2 | ||
| 151 | #define STM32_ST_USE_TIMER 2 | ||
| 152 | |||
| 153 | /* | ||
| 154 | * UART driver system settings. | ||
| 155 | */ | ||
| 156 | #define STM32_UART_USE_USART1 FALSE | ||
| 157 | #define STM32_UART_USE_USART2 FALSE | ||
| 158 | #define STM32_UART_USART1_IRQ_PRIORITY 3 | ||
| 159 | #define STM32_UART_USART2_IRQ_PRIORITY 3 | ||
| 160 | #define STM32_UART_USART1_DMA_PRIORITY 0 | ||
| 161 | #define STM32_UART_USART2_DMA_PRIORITY 0 | ||
| 162 | #define STM32_UART_DMA_ERROR_HOOK(uartp) osalSysHalt("DMA failure") | ||
| 163 | |||
| 164 | /* | ||
| 165 | * USB driver system settings. | ||
| 166 | */ | ||
| 167 | #define STM32_USB_USE_USB1 TRUE | ||
| 168 | #define STM32_USB_LOW_POWER_ON_SUSPEND FALSE | ||
| 169 | #define STM32_USB_USB1_LP_IRQ_PRIORITY 3 | ||
| 170 | |||
| 171 | #endif /* _MCUCONF_H_ */ | ||
diff --git a/keyboards/retro_75/readme.md b/keyboards/retro_75/readme.md new file mode 100644 index 000000000..0eb0afff3 --- /dev/null +++ b/keyboards/retro_75/readme.md | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # Retro75 | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | A 75% ARM STM32F072 keyboard, with WS2812 LEDs. | ||
| 6 | |||
| 7 | * Keyboard Maintainer: [zvecr](https://github.com/zvecr) | ||
| 8 | * Hardware Supported: Retro75 PCB | ||
| 9 | * Hardware Availability: Private Group-Buy | ||
| 10 | |||
| 11 | Make example for this keyboard (after setting up your build environment): | ||
| 12 | |||
| 13 | make retro_75:default | ||
| 14 | |||
| 15 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
diff --git a/keyboards/retro_75/retro_75.c b/keyboards/retro_75/retro_75.c new file mode 100644 index 000000000..d47def372 --- /dev/null +++ b/keyboards/retro_75/retro_75.c | |||
| @@ -0,0 +1 @@ | |||
| #include "retro_75.h" | |||
diff --git a/keyboards/retro_75/retro_75.h b/keyboards/retro_75/retro_75.h new file mode 100644 index 000000000..7a7d10e42 --- /dev/null +++ b/keyboards/retro_75/retro_75.h | |||
| @@ -0,0 +1,61 @@ | |||
| 1 | /* Copyright 2019 zvecr<git@zvecr.com> | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | #include "quantum.h" | ||
| 19 | #define ____ KC_NO | ||
| 20 | |||
| 21 | /* This a shortcut to help you visually see your layout. | ||
| 22 | * | ||
| 23 | * The first section contains all of the arguments representing the physical | ||
| 24 | * layout of the board and position of the keys. | ||
| 25 | * | ||
| 26 | * The second converts the arguments into a two-dimensional array which | ||
| 27 | * represents the switch matrix. | ||
| 28 | */ | ||
| 29 | #define LAYOUT( \ | ||
| 30 | K000, K002, K003, K004, K005, K006, K007, K008, K009, K011, K012, K013, K014, K015, \ | ||
| 31 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K115, \ | ||
| 32 | K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K215, \ | ||
| 33 | K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K315, \ | ||
| 34 | K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, K415, \ | ||
| 35 | K500, K501, K505, K509, K511, K512, K515 \ | ||
| 36 | ) \ | ||
| 37 | { \ | ||
| 38 | { K000, ____, K002, K003, K004, K005, K006, K007, K008, K009, ____, K011, K012, K013, K014, K015}, \ | ||
| 39 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, ____, K115}, \ | ||
| 40 | { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, ____, K215}, \ | ||
| 41 | { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, ____, ____, K315}, \ | ||
| 42 | { K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, ____, ____, K415}, \ | ||
| 43 | { K500, K501, ____, ____, ____, K505, ____, ____, ____, K509, ____, K511, K512, ____, ____, K515}, \ | ||
| 44 | } | ||
| 45 | |||
| 46 | #define LAYOUT_split_bs( \ | ||
| 47 | K000, K002, K003, K004, K005, K006, K007, K008, K009, K011, K012, K013, K014, K015, \ | ||
| 48 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114, K115, \ | ||
| 49 | K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K215, \ | ||
| 50 | K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K315, \ | ||
| 51 | K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, K415, \ | ||
| 52 | K500, K501, K505, K509, K511, K512, K515 \ | ||
| 53 | ) \ | ||
| 54 | { \ | ||
| 55 | { K000, ____, K002, K003, K004, K005, K006, K007, K008, K009, ____, K011, K012, K013, K014, K015}, \ | ||
| 56 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114, K115}, \ | ||
| 57 | { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, ____, K215}, \ | ||
| 58 | { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, ____, ____, K315}, \ | ||
| 59 | { K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, ____, ____, K415}, \ | ||
| 60 | { K500, K501, ____, ____, ____, K505, ____, ____, ____, K509, ____, K511, K512, ____, ____, K515}, \ | ||
| 61 | } | ||
diff --git a/keyboards/retro_75/rules.mk b/keyboards/retro_75/rules.mk new file mode 100644 index 000000000..82a2cfb06 --- /dev/null +++ b/keyboards/retro_75/rules.mk | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | ## chip/board settings | ||
| 2 | # the next two should match the directories in | ||
| 3 | # <chibios>/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES) | ||
| 4 | MCU_FAMILY = STM32 | ||
| 5 | MCU_SERIES = STM32F0xx | ||
| 6 | # linker script to use | ||
| 7 | # it should exist either in <chibios>/os/common/ports/ARMCMx/compilers/GCC/ld/ | ||
| 8 | # or <this_dir>/ld/ | ||
| 9 | MCU_LDSCRIPT = STM32F072xB | ||
| 10 | # startup code to use | ||
| 11 | # is should exist in <chibios>/os/common/ports/ARMCMx/compilers/GCC/mk/ | ||
| 12 | MCU_STARTUP = stm32f0xx | ||
| 13 | # it should exist either in <chibios>/os/hal/boards/ | ||
| 14 | # or <this_dir>/boards | ||
| 15 | BOARD = ST_STM32F072B_DISCOVERY | ||
| 16 | # Cortex version | ||
| 17 | # Teensy LC is cortex-m0; Teensy 3.x are cortex-m4 | ||
| 18 | MCU = cortex-m0 | ||
| 19 | # ARM version, CORTEX-M0/M1 are 6, CORTEX-M3/M4/M7 are 7 | ||
| 20 | ARMV = 6 | ||
| 21 | # If you want to be able to jump to bootloader from firmware on STM32 MCUs, | ||
| 22 | # set the correct BOOTLOADER_ADDRESS. Either set it here, or define it in | ||
| 23 | # ./bootloader_defs.h or in ./boards/<FOO>/bootloader_defs.h (if you have | ||
| 24 | # a custom board definition that you plan to reuse). | ||
| 25 | # If you're not setting it here, leave it commented out. | ||
| 26 | # It is chip dependent, the correct number can be looked up here (page 175): | ||
| 27 | # http://www.st.com/web/en/resource/technical/document/application_note/CD00167594.pdf | ||
| 28 | # This also requires a patch to chibios: | ||
| 29 | # <tmk_dir>/tmk_core/tool/chibios/ch-bootloader-jump.patch | ||
| 30 | #STM32_BOOTLOADER_ADDRESS = 0x1FFFC800 | ||
| 31 | |||
| 32 | # Options to pass to dfu-util when flashing | ||
| 33 | DFU_ARGS = -d 0483:df11 -a 0 -s 0x08000000:leave | ||
| 34 | DFU_SUFFIX_ARGS = -p df11 -v 0483 | ||
| 35 | |||
| 36 | # Build Options | ||
| 37 | # change yes to no to disable | ||
| 38 | # | ||
| 39 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
| 40 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 41 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 42 | CONSOLE_ENABLE = no # Console for debug | ||
| 43 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 44 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 45 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 46 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 47 | NKRO_ENABLE = no # USB Nkey Rollover | ||
| 48 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 49 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
| 50 | MIDI_ENABLE = no # MIDI support | ||
| 51 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 52 | AUDIO_ENABLE = no # Audio output on port C6 | ||
| 53 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
| 54 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
