Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1186 | savelij | 1 | ifndef __stm8tsyscfginc ; avoid multiple inclusion |
2 | __stm8tsyscfginc equ 1 |
||
3 | |||
4 | save |
||
5 | listing off ; no listing over this file |
||
6 | |||
7 | ;**************************************************************************** |
||
8 | ;* * |
||
9 | ;* AS 1.42 - File SYSCFG.INC * |
||
10 | ;* * |
||
11 | ;* contains SFR and Bit Definitions for STM8T System Configuration * |
||
12 | ;* * |
||
13 | ;* Source: RM0312 (DocID022352 Rev 3) * |
||
14 | ;* * |
||
15 | ;**************************************************************************** |
||
16 | |||
17 | __defsyscfg macro Base,Has3 |
||
18 | SYSCFG_RMPCR1 label Base+$01 ; Remapping control register 1 |
||
19 | SYSCFG_TIM3_CH2 bit SYSCFG_RMPCR1,3 ; Timer3 channel2 mapping |
||
20 | SYSCFG_TIM3_CH1 bit SYSCFG_RMPCR1,2 ; Timer3 channel1 mapping |
||
21 | endm |
||
22 | |||
23 | restore |
||
24 | endif ; __stm8tsyscfginc |