View one_api_2022.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Create C:\TEMP directory | |
win_file: path='C:\TEMP' state=directory | |
- name: Download OneApi2022.3 | |
ansible.windows.win_powershell: | |
script: | | |
az storage file download --account-name xxxxxx --account-key {{ key }} --share-name ansible-files --path "Intel.7z" --dest "C:\TEMP\Intel.7z" --output none | |
- name: Extract archive | |
ansible.windows.win_powershell: |
View one_api_2021_4.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Create C:\TEMP directory | |
win_file: path='C:\TEMP' state=directory | |
- name: Download OneApi2021.4 | |
ansible.windows.win_powershell: | |
script: | | |
az storage file download --account-name xxxxxxx --account-key {{ key }} --share-name ansible-files --path "w_BaseKit_p_2021.4.0.3421_offline.exe" --dest "C:\TEMP\w_BaseKit_p_2021.4.0.3421_offline.exe" --output none | |
- name: Add compatibility mode registry setting | |
ansible.windows.win_regedit: |
View adc.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Program to use the ADC Module of the Freescale microcontroler S08QG8 | |
Using 3 channels (GPIO) | |
*/ | |
unsigned char ADC_value[3]; | |
unsigned char ADC_sel[] = {0x60, 0x63, 0x66}; | |
unsigned char i; | |
interrupt VectorNumber_Vadc void ADC_ISR (void) |