Created
December 9, 2018 08:11
-
-
Save betaEncoder/09b76d462ccb0a572c12c33beed53501 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#include<CH552.h> | |
#include<Public/Debug.h> | |
#include<GPIO/GPIO.h> | |
sbit LED = P1^1; | |
void main(){ | |
CfgFsys( ); | |
mDelaymS(20); | |
Port1Cfg(1,1); | |
while(1){ | |
LED = ~LED; | |
mDelaymS(500); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment