| #include <stdio.h> |
| #include <stdlib.h> |
| |
| #include "mbtk_version.h" |
| #include "mbtk_log.h" |
| |
| int main(int argc, char *argv[]) |
| { |
| char buff[2048] = {0}; |
| |
| mbtk_build_def_get(buff, sizeof(buff)); |
| |
| printf("%s\n", buff); |
| |
| |
| mbtk_lib_info_print(); |
| mbtk_ril_lib_info_print(); |
| lynq_lib_info_print(); |
| ql_lib_info_print(); |
| mbtk_audio_lib_info_print(); |
| mbtk_coap_lib_info_print(); |
| mbtk_factory_lib_info_print(); |
| mbtk_fota_lib_info_print(); |
| mbtk_ftp_lib_info_print(); |
| mbtk_gnss_lib_info_print(); |
| mbtk_http_lib_info_print(); |
| mbtk_mqtt_lib_info_print(); |
| mbtk_net_lib_info_print(); |
| mbtk_tcpip_lib_info_print(); |
| |
| return 0; |
| } |
| |