main.c
来自「mpc55**系列芯片的例程 包括SCI,SPI,TIMER,FIT,EDMA」· C语言 代码 · 共 20 行
C
20 行
/* main.c - Timebase example */
/* Copyright Freescale Semiconductor, Inc 2007 All rights reserved. */
/* Notes: */
/* 1. MMU not initialized; must be done by debug scripts or BAM */
/* 2. SRAM not initialized; must be done by debug scripts or in crt0 type file */
#include "mpc563m.h" /* Use proper include file like mpc5510.h, mpc5554.h, mpc563m.h */
#include "main_asm.h" /* interface to the assembly module */
int main(void) {
main_asm(); /* call the assembly function */
for (;;) {
/* loop forever */
volatile int i;
i++;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?