Compare commits
2 Commits
0a5b9635bb
...
3482a25afc
Author | SHA1 | Date |
---|---|---|
Rajput R Vikramsingh Vikramsingh | 3482a25afc | |
Rajput R Vikramsingh Vikramsingh | 29ff038b72 |
39
Lab6_Task2.c
39
Lab6_Task2.c
|
@ -21,7 +21,40 @@ void main(void)
|
|||
SYSCTL_RCC_R &= ~(1 << 20);
|
||||
SYSCTL_RCGC0_R |= 0x00100000;
|
||||
SYSCTL_RCGCPWM_R = 0x3;
|
||||
SYSCTL_RCGC2_R |= 0x20;
|
||||
GPIO_PORTF_DEN_R= 0x1F;
|
||||
GPIO_PORTF_DIR_R= 0x0E;
|
||||
//SYSCTL_RCGC2_R |= 0x20;
|
||||
//GPIO_PORTF_DEN_R= 0x1F;
|
||||
//GPIO_PORTF_DIR_R= 0x0E;
|
||||
GPIOF_config();
|
||||
GPIOF_Interrupt_config();
|
||||
GPIO_PORTF_AFSEL_R |= 0x02;
|
||||
GPIO_PORTF_PCTL_R |= 0x50;
|
||||
|
||||
PWM1_2_CTL_R= 0x00000000;
|
||||
PWM1_2_GENB_R |= 0x80E;
|
||||
|
||||
PWM1_2_LOAD_R = 0xA0;
|
||||
PWM1_2_CMPB_R = 0x50;
|
||||
PWM1_2_CTL_R |=0x01;
|
||||
PWM1_ENABLE_R |=(1<<5);
|
||||
|
||||
while(1);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue