lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | /************************************************************************
|
| 2 | *¹¦ÄܽéÉÜ£ºÆ½Ì¨ÄÚ²¿À©Õ¹at¿Í»§¶ËºÍ·þÎñ¶Ë×¢²á£¬ËùÓÐ×¢²á¾ùÔÚext_regist_init½Ó¿ÚÖÐÍê³É£¬ÓÉat_ctlÔÚÆô¶¯Ê±µ÷ÓÃ
|
| 3 | *¸ºÔðÈË£º
|
| 4 | *±¸·ÝÈË£º
|
| 5 | *ÐÞ¸ÄÈÕ£º
|
| 6 | *ÐÞ¸ÄÄÚÈÝ£º
|
| 7 | *°æ±¾ºÅ£º
|
| 8 | ************************************************************************/
|
| 9 |
|
| 10 | #include "ext_regist.h"
|
| 11 | #include "at_com.h"
|
| 12 |
|
| 13 | //ƽ̨ÄÚ²¿À©Õ¹atÃüÁ·¢£¬ËùÓÐÀ©Õ¹µÄ¿Í»§¶ËºÍ·þÎñ¶ËatÃüÁ¾ùÐèÒªÔڸú¯ÊýÖУ¬¸Ãº¯Êý»áÔÚat_ctlÓ¦Óóõʼ»¯Ê±£¬Íê³ÉÉÏÊöatÃüÁîµÄ×¢²á
|
| 14 |
|
| 15 | void ext_regist_init()
|
| 16 | {
|
| 17 | ext_normal_regist();
|
| 18 | ext_dev_regist_init();
|
| 19 | #ifndef CONFIG_MIN_8M_VERSION
|
| 20 | ext_kwatchtest_regist();
|
| 21 | ext_ftp_regist();
|
| 22 | ext_user_modem_regist();
|
| 23 | ext_socket_regist();
|
| 24 |
|
| 25 | #ifndef _USE_BL
|
| 26 | ext_ccapp_regist();
|
| 27 | #endif
|
| 28 | ext_gps_regist();
|
| 29 | #endif
|
| 30 | ext_zcat_regist();
|
| 31 | ext_amt_regist();
|
| 32 | ext_wdt_regist_init();
|
xf.li | bdd93d5 | 2023-05-12 07:10:14 -0700 | [diff] [blame^] | 33 | #ifdef _USE_VOICE_ALSA
|
| 34 | ext_audio_regist_init();
|
| 35 | #endif
|
lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 36 | }
|
| 37 |
|
| 38 |
|