grpe_Magana_Brunetto/soft/PjtKEIL_StepDeb_2/Driver/DriverJeuLaser.inc

57 lines
1.2 KiB
PHP
Raw Normal View History

2023-03-14 16:21:55 +01:00
; Bibliotheque DriverJeuLaser (ancienne gassp72 adapt<EFBFBD>e 2021 - TR)
; Acc<EFBFBD>s en aux fonctions suivantes :
; GPIO :
; GPIOA_Set(char Broche), GPIOB_Set(char Broche), GPIOC_Set(char Broche)
; GPIOA_Clear(char Broche), GPIOB_Clear(char Broche), GPIOC_Clear(char Broche)
; PWM :
;/**
; * @brief Fixe une valeur de PWM, Val, en tick horloge. La rapport cyclique effectif
; * est donc : rcy = Thaut_ticks / Periode_ticks
; * @note sp<EFBFBD>cifique Jeu Laser, PWM li<EFBFBD>e exclusivement au TIM3, chan3
; * @param Thaut_ticks : dur<EFBFBD>e de l'<27>tat haut d'une impulsion en Ticks
; * @retval None
; */
;void PWM_Set_Value_TIM3_Ch3( unsigned short int Thaut_ticks);
import PWM_Set_Value_TIM3_Ch3
;/**
; * @brief Mise <EFBFBD> 1 d'une broche GPIO
; * @note Une fonction par GPIO
; * @param Broche : 0 <EFBFBD> 15
; * @retval None
; */
;void GPIOA_Set(char Broche);
import GPIOA_Set
;void GPIOB_Set(char Broche);
import GPIOB_Set
;void GPIOC_Set(char Broche);
import GPIOC_Set
;/**
; * @brief Mise <EFBFBD> 0 d'une broche GPIO
; * @note Une fonction par GPIO
; * @param Broche : 0 <EFBFBD> 15
; * @retval None
; */
;void GPIOA_Clear(char Broche);
import GPIOA_Clear
;void GPIOB_Clear(char Broche);
import GPIOB_Clear
;void GPIOC_Clear(char Broche);
import GPIOC_Clear
end