* Main folder Main folder with some changes like the base layout and matrix for uploading in a future to the qmk repositorie * First Commit Firsts non previously commited changes: -Changed to keyboards/handwired -Basic credit to Xydane -70% Layout * Modified file structure for several keyboards As I don't want to create several folders and overcrowd the main folders I made a few modifications to being able of configure several keyboards as revisions of the main keyboard. Added a second variant. Compiling tests went right but I haven't tried it on the controller. * Starting leds * Started dual color leds PWM functions and configs I started to create the PWM functions and configs based on internet examples, it doesn't compile yet * Backtraced a bit to establish and try debug before continuing the pwm Just this, algo some doc as a new pinout image, space cadet modification to try if it works and little more * Deleted unuseful stuff After trying the reestructure to being compatible with several keyboards and that it worked I deleted the other keyboard. Added space cadet shift to ISO. Finally I couldn't debug everything and I'm getting quite frustrated to continue much more than just adding pwm leds * Changed again Iso fix for Space Cadet * Renamed keyboard, future pull I just renamed the keyboard and made some simplifying changes in order to make a pull request sometime soon. I'm too frustrated, tired and knowledge limited to achive using the PWM for leds, I didn't even get to use the debug mode... I intend to end basic led color change using layers (if I can), document everything properly and make a pull request so other users can continue/use this project. * Writed Readme.md file I also corrected a previous compilation problem and ordered a bit the keymaps * Corrected readme * Try to add layer activated light * Revert "Try to add layer activated light" This reverts commit 205af820d845dab08988f329b9f062f558060220. * Progress to fork Coming back to work, upcoming pull * Linked image Corrected readme * Some cleanning Added images to readme, som cleaning, burning after commit. * Almost finished (working) Finally * Finished bluepill firmware Just finished and tried layer dependant led colors. Going for merge * Deleted innecesary stuff and trailing spaces Just as commit title said. * Coding conventions Just modified some files to respect coding conventions * Deleted XXXXXX define Checking some other PR seen this improvement * Changes suggested on PR Firs doing the easy changes * More changes for the PR -I also deleted one unused function for led toggling on matrix.c (Now it uses layer dependent baklight, algo on of on start) -Deleted commented function on keymaps. Right now only needs testing and all pragma replaces. * Almost every pragma change on PR That's almost finished, only waiting for reply due to compiling errors * Revert "Almost every pragma change on PR" This reverts commit 07f23aa862b370cdf0ae37d6f2130c9e9856f491. * Revert last commit I moddified by mistake a file from another keyboard * Solved last pragma Compiles fine. Now I only need to test it, I say you if it works to include it in the main repository.
		
			
				
	
	
		
			209 lines
		
	
	
		
			7.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			209 lines
		
	
	
		
			7.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|     ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio
 | |
| 
 | |
|     Licensed under the Apache License, Version 2.0 (the "License");
 | |
|     you may not use this file except in compliance with the License.
 | |
|     You may obtain a copy of the License at
 | |
| 
 | |
|         http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
|     Unless required by applicable law or agreed to in writing, software
 | |
|     distributed under the License is distributed on an "AS IS" BASIS,
 | |
|     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
|     See the License for the specific language governing permissions and
 | |
|     limitations under the License.
 | |
| */
 | |
| 
 | |
| #ifndef _MCUCONF_H_
 | |
| #define _MCUCONF_H_
 | |
| 
 | |
| #define STM32F103_MCUCONF
 | |
| 
 | |
| /*
 | |
|  * STM32F103 drivers configuration.
 | |
|  * The following settings override the default settings present in
 | |
|  * the various device driver implementation headers.
 | |
|  * Note that the settings for each driver only have effect if the whole
 | |
|  * driver is enabled in halconf.h.
 | |
|  *
 | |
|  * IRQ priorities:
 | |
|  * 15...0       Lowest...Highest.
 | |
|  *
 | |
|  * DMA priorities:
 | |
|  * 0...3        Lowest...Highest.
 | |
|  */
 | |
| 
 | |
| /*
 | |
|  * HAL driver system settings.
 | |
|  */
 | |
| #define STM32_NO_INIT                       FALSE
 | |
| #define STM32_HSI_ENABLED                   TRUE
 | |
| #define STM32_LSI_ENABLED                   FALSE
 | |
| #define STM32_HSE_ENABLED                   TRUE
 | |
| #define STM32_LSE_ENABLED                   FALSE
 | |
| #define STM32_SW                            STM32_SW_PLL
 | |
| #define STM32_PLLSRC                        STM32_PLLSRC_HSE
 | |
| #define STM32_PLLXTPRE                      STM32_PLLXTPRE_DIV1
 | |
| #define STM32_PLLMUL_VALUE                  9
 | |
| #define STM32_HPRE                          STM32_HPRE_DIV1
 | |
| #define STM32_PPRE1                         STM32_PPRE1_DIV2
 | |
| #define STM32_PPRE2                         STM32_PPRE2_DIV2
 | |
| #define STM32_ADCPRE                        STM32_ADCPRE_DIV4
 | |
| #define STM32_USB_CLOCK_REQUIRED            TRUE
 | |
| #define STM32_USBPRE                        STM32_USBPRE_DIV1P5
 | |
| #define STM32_MCOSEL                        STM32_MCOSEL_NOCLOCK
 | |
| #define STM32_RTCSEL                        STM32_RTCSEL_HSEDIV
 | |
| #define STM32_PVD_ENABLE                    FALSE
 | |
| #define STM32_PLS                           STM32_PLS_LEV0
 | |
| 
 | |
| /*
 | |
|  * ADC driver system settings.
 | |
|  */
 | |
| #define STM32_ADC_USE_ADC1                  FALSE
 | |
| #define STM32_ADC_ADC1_DMA_PRIORITY         2
 | |
| #define STM32_ADC_ADC1_IRQ_PRIORITY         6
 | |
| 
 | |
| /*
 | |
|  * CAN driver system settings.
 | |
|  */
 | |
| #define STM32_CAN_USE_CAN1                  FALSE
 | |
| #define STM32_CAN_CAN1_IRQ_PRIORITY         11
 | |
| 
 | |
| /*
 | |
|  * EXT driver system settings.
 | |
|  */
 | |
| #define STM32_EXT_EXTI0_IRQ_PRIORITY        6
 | |
| #define STM32_EXT_EXTI1_IRQ_PRIORITY        6
 | |
| #define STM32_EXT_EXTI2_IRQ_PRIORITY        6
 | |
| #define STM32_EXT_EXTI3_IRQ_PRIORITY        6
 | |
| #define STM32_EXT_EXTI4_IRQ_PRIORITY        6
 | |
| #define STM32_EXT_EXTI5_9_IRQ_PRIORITY      6
 | |
| #define STM32_EXT_EXTI10_15_IRQ_PRIORITY    6
 | |
| #define STM32_EXT_EXTI16_IRQ_PRIORITY       6
 | |
| #define STM32_EXT_EXTI17_IRQ_PRIORITY       6
 | |
| #define STM32_EXT_EXTI18_IRQ_PRIORITY       6
 | |
| #define STM32_EXT_EXTI19_IRQ_PRIORITY       6
 | |
| 
 | |
| /*
 | |
|  * GPT driver system settings.
 | |
|  */
 | |
| #define STM32_GPT_USE_TIM1                  FALSE
 | |
| #define STM32_GPT_USE_TIM2                  FALSE
 | |
| #define STM32_GPT_USE_TIM3                  FALSE
 | |
| #define STM32_GPT_USE_TIM4                  FALSE
 | |
| #define STM32_GPT_USE_TIM5                  FALSE
 | |
| #define STM32_GPT_USE_TIM8                  FALSE
 | |
| #define STM32_GPT_TIM1_IRQ_PRIORITY         7
 | |
| #define STM32_GPT_TIM2_IRQ_PRIORITY         7
 | |
| #define STM32_GPT_TIM3_IRQ_PRIORITY         7
 | |
| #define STM32_GPT_TIM4_IRQ_PRIORITY         7
 | |
| #define STM32_GPT_TIM5_IRQ_PRIORITY         7
 | |
| #define STM32_GPT_TIM8_IRQ_PRIORITY         7
 | |
| 
 | |
| /*
 | |
|  * I2C driver system settings.
 | |
|  */
 | |
| #define STM32_I2C_USE_I2C1                  FALSE
 | |
| #define STM32_I2C_USE_I2C2                  FALSE
 | |
| #define STM32_I2C_BUSY_TIMEOUT              50
 | |
| #define STM32_I2C_I2C1_IRQ_PRIORITY         5
 | |
| #define STM32_I2C_I2C2_IRQ_PRIORITY         5
 | |
| #define STM32_I2C_I2C1_DMA_PRIORITY         3
 | |
| #define STM32_I2C_I2C2_DMA_PRIORITY         3
 | |
| #define STM32_I2C_DMA_ERROR_HOOK(i2cp)      osalSysHalt("DMA failure")
 | |
| 
 | |
| /*
 | |
|  * ICU driver system settings.
 | |
|  */
 | |
| #define STM32_ICU_USE_TIM1                  FALSE
 | |
| #define STM32_ICU_USE_TIM2                  FALSE
 | |
| #define STM32_ICU_USE_TIM3                  FALSE
 | |
| #define STM32_ICU_USE_TIM4                  FALSE
 | |
| #define STM32_ICU_USE_TIM5                  FALSE
 | |
| #define STM32_ICU_USE_TIM8                  FALSE
 | |
| #define STM32_ICU_TIM1_IRQ_PRIORITY         7
 | |
| #define STM32_ICU_TIM2_IRQ_PRIORITY         7
 | |
| #define STM32_ICU_TIM3_IRQ_PRIORITY         7
 | |
| #define STM32_ICU_TIM4_IRQ_PRIORITY         7
 | |
| #define STM32_ICU_TIM5_IRQ_PRIORITY         7
 | |
| #define STM32_ICU_TIM8_IRQ_PRIORITY         7
 | |
| 
 | |
| /*
 | |
|  * PWM driver system settings.
 | |
|  */
 | |
| #define STM32_PWM_USE_ADVANCED              FALSE
 | |
| #define STM32_PWM_USE_TIM1                  FALSE
 | |
| #define STM32_PWM_USE_TIM2                  FALSE
 | |
| #define STM32_PWM_USE_TIM3                  FALSE
 | |
| #define STM32_PWM_USE_TIM4                  TRUE
 | |
| #define STM32_PWM_USE_TIM5                  FALSE
 | |
| #define STM32_PWM_USE_TIM8                  FALSE
 | |
| #define STM32_PWM_TIM1_IRQ_PRIORITY         7
 | |
| #define STM32_PWM_TIM2_IRQ_PRIORITY         7
 | |
| #define STM32_PWM_TIM3_IRQ_PRIORITY         7
 | |
| #define STM32_PWM_TIM4_IRQ_PRIORITY         7
 | |
| #define STM32_PWM_TIM5_IRQ_PRIORITY         7
 | |
| #define STM32_PWM_TIM8_IRQ_PRIORITY         7
 | |
| 
 | |
| /*
 | |
|  * RTC driver system settings.
 | |
|  */
 | |
| #define STM32_RTC_IRQ_PRIORITY              15
 | |
| 
 | |
| /*
 | |
|  * SERIAL driver system settings.
 | |
|  */
 | |
| #define STM32_SERIAL_USE_USART1             FALSE
 | |
| #define STM32_SERIAL_USE_USART2             FALSE
 | |
| #define STM32_SERIAL_USE_USART3             FALSE
 | |
| #define STM32_SERIAL_USE_UART4              FALSE
 | |
| #define STM32_SERIAL_USE_UART5              FALSE
 | |
| #define STM32_SERIAL_USART1_PRIORITY        12
 | |
| #define STM32_SERIAL_USART2_PRIORITY        12
 | |
| #define STM32_SERIAL_USART3_PRIORITY        12
 | |
| #define STM32_SERIAL_UART4_PRIORITY         12
 | |
| #define STM32_SERIAL_UART5_PRIORITY         12
 | |
| 
 | |
| /*
 | |
|  * SPI driver system settings.
 | |
|  */
 | |
| #define STM32_SPI_USE_SPI1                  FALSE
 | |
| #define STM32_SPI_USE_SPI2                  FALSE
 | |
| #define STM32_SPI_USE_SPI3                  FALSE
 | |
| #define STM32_SPI_SPI1_DMA_PRIORITY         1
 | |
| #define STM32_SPI_SPI2_DMA_PRIORITY         1
 | |
| #define STM32_SPI_SPI3_DMA_PRIORITY         1
 | |
| #define STM32_SPI_SPI1_IRQ_PRIORITY         10
 | |
| #define STM32_SPI_SPI2_IRQ_PRIORITY         10
 | |
| #define STM32_SPI_SPI3_IRQ_PRIORITY         10
 | |
| #define STM32_SPI_DMA_ERROR_HOOK(spip)      osalSysHalt("DMA failure")
 | |
| 
 | |
| /*
 | |
|  * ST driver system settings.
 | |
|  */
 | |
| #define STM32_ST_IRQ_PRIORITY               8
 | |
| #define STM32_ST_USE_TIMER                  2
 | |
| 
 | |
| /*
 | |
|  * UART driver system settings.
 | |
|  */
 | |
| #define STM32_UART_USE_USART1               FALSE
 | |
| #define STM32_UART_USE_USART2               FALSE
 | |
| #define STM32_UART_USE_USART3               FALSE
 | |
| #define STM32_UART_USART1_IRQ_PRIORITY      12
 | |
| #define STM32_UART_USART2_IRQ_PRIORITY      12
 | |
| #define STM32_UART_USART3_IRQ_PRIORITY      12
 | |
| #define STM32_UART_USART1_DMA_PRIORITY      0
 | |
| #define STM32_UART_USART2_DMA_PRIORITY      0
 | |
| #define STM32_UART_USART3_DMA_PRIORITY      0
 | |
| #define STM32_UART_DMA_ERROR_HOOK(uartp)    osalSysHalt("DMA failure")
 | |
| 
 | |
| /*
 | |
|  * USB driver system settings.
 | |
|  */
 | |
| #define STM32_USB_USE_USB1                  TRUE
 | |
| #define STM32_USB_LOW_POWER_ON_SUSPEND      FALSE
 | |
| #define STM32_USB_USB1_HP_IRQ_PRIORITY      13
 | |
| #define STM32_USB_USB1_LP_IRQ_PRIORITY      14
 | |
| 
 | |
| #endif /* _MCUCONF_H_ */ |