Skip to content

Commit

Permalink
(Continued)
Browse files Browse the repository at this point in the history
  • Loading branch information
wberube committed Aug 30, 2024
1 parent e5d61f5 commit 2b6aa54
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@
"name": "arm-musl",
"includePath": ["${workspaceFolder}/**"],
"defines": ["__arm__"],
"compilerPath": "toolchain/cortex_a7_thumb2_hf-gcc13-musl-4_9/bin/arm-openipc-linux-musleabihf-gcc",
"compilerPath": "toolchain/arm-2009q3-67-arm-none-linux-gnueabi-i686-pc-linux-gnu/bin/arm-none-linux-gnueabi-gcc",
"cStandard": "c11"
},{
"name": "arm9-glibc",
"includePath": ["${workspaceFolder}/**"],
"defines": ["__arm__"],
"compilerPath": "toolchain/arm926t-gcc13-musl-3_0/bin/arm-openipc-linux-musleabi-gcc",
"cStandard": "c11"
},{
"name": "arm9-musl3",
Expand Down
2 changes: 1 addition & 1 deletion src/hal/support.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ void hal_identify(void) {
case 0x20160100: strcat(chip, "V300"); break;
case 0x20160101: strcat(chip, "V330"); break;
}
strcpy(family, "AK3918");
strcpy(family, "anyka");
chnCount = AK_VENC_CHN_NUM;
chnState = (hal_chnstate*)ak_state;
//aud_thread = ak_audio_thread;
Expand Down

0 comments on commit 2b6aa54

Please sign in to comment.