Compare commits
No commits in common. "661587014549afe7118ade812f134fb7f5f45011" and "094b6bd5264ad3d6c00a4eda2a1d3f8a268c353f" have entirely different histories.
6615870145
...
094b6bd526
@ -31,10 +31,6 @@ git remote remove origin
|
|||||||
git remote set-url --add origin git@github.com:*.git
|
git remote set-url --add origin git@github.com:*.git
|
||||||
|
|
||||||
git push -u origin master
|
git push -u origin master
|
||||||
|
|
||||||
# 退到/进到 指定commit的sha码
|
|
||||||
|
|
||||||
git reset --hard dde8c25694f34acf8971f0782b1a676f39bf0a46
|
|
||||||
```
|
```
|
||||||
## SConscript
|
## SConscript
|
||||||
加入这个文件可以使在当前文件夹里的也能被调用
|
加入这个文件可以使在当前文件夹里的也能被调用
|
||||||
|
@ -164,12 +164,12 @@ SECTIONS
|
|||||||
/* *packages*syswatch*.o(.bss .bss*) */
|
/* *packages*syswatch*.o(.bss .bss*) */
|
||||||
/* *packages*UrlEncode*.o(.bss .bss*) */
|
/* *packages*UrlEncode*.o(.bss .bss*) */
|
||||||
|
|
||||||
build\\kernel\\src\\*.o(.bss .bss*)
|
/*build\\kernel\\src\\*.o(.bss .bss*)*/
|
||||||
/* build\\kernel\\libcpu\\*.o(.bss .bss*) */
|
/* build\\kernel\\libcpu\\*.o(.bss .bss*) */
|
||||||
/* build\\kernel\\components\\libc\\*.o(.bss .bss*)
|
/* build\\kernel\\components\\libc\\*.o(.bss .bss*)
|
||||||
/* build\\kernel\\components\\drivers\\*.o(.bss .bss*) */
|
/* build\\kernel\\components\\drivers\\*.o(.bss .bss*) */
|
||||||
/* build\\kernel\\components\\dfs\\*.o(.bss .bss*) */
|
/* build\\kernel\\components\\dfs\\*.o(.bss .bss*) */
|
||||||
build\\kernel\\components\\net\\lwip\\lwip-2.0.3\\*.o(.bss .bss*)
|
/*build\\kernel\\components\\net\\lwip\\lwip-2.0.3\\*.o(.bss .bss*)*/
|
||||||
/* build\\kernel\\components\\net\\lwip\\port\\**.o(.bss .bss*) */
|
/* build\\kernel\\components\\net\\lwip\\port\\**.o(.bss .bss*) */
|
||||||
/* build\\kernel\\components\\net\\sal\\*.o(.bss .bss*) */
|
/* build\\kernel\\components\\net\\sal\\*.o(.bss .bss*) */
|
||||||
/* build\\kernel\\components\\net\\netdev\\*.o(.bss .bss*) */
|
/* build\\kernel\\components\\net\\netdev\\*.o(.bss .bss*) */
|
||||||
|
@ -14,18 +14,13 @@ void lcd_white(int x, int y)
|
|||||||
{
|
{
|
||||||
lcd_address_set(x, y, x, y);
|
lcd_address_set(x, y, x, y);
|
||||||
lcd_write_half_word(WHITE);
|
lcd_write_half_word(WHITE);
|
||||||
|
|
||||||
}
|
}
|
||||||
void snake_address(int x, int y,int r,const rt_uint16_t da)
|
void snake_address(int x, int y,int r,const rt_uint16_t da)
|
||||||
{
|
{
|
||||||
for (int i = x * r; i < x * r + r; i++)
|
lcd_fill(x*r, y*r, x*r+r-1, y*r+r-1,da);
|
||||||
{
|
|
||||||
for (int j = y * r; j < y * r + r; j++)
|
|
||||||
{
|
|
||||||
lcd_address_set(i, j, i, j);
|
|
||||||
lcd_write_half_word(da);
|
lcd_write_half_word(da);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
// bt 命令行
|
// bt 命令行
|
||||||
int color_cmd(int argc, char **argv)
|
int color_cmd(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user