Giter Club home page Giter Club logo

wireless_wifi's Introduction

Microchip logo Harmony logo small

MPLAB® Harmony 3 Wireless_wifi

MPLAB® Harmony 3 is an extension of the MPLAB® ecosystem for creating embedded firmware solutions for Microchip 32-bit SAM and PIC® microcontroller and microprocessor devices. Refer to the following links for more information.

This repository contains the MPLAB® Harmony 3 Wireless_wifi solutions. Quickly incorporate connectivity to your designs with wireless ICs, modules, software and development kits that make connecting effortless for your customers. Our comprehensive wireless portfolio has the technology to meet your range, data rate, interoperability, frequency and topology needs. Refer to the following links for release notes, training materials, and interface reference information.

Note: PIC32MZ W1 Software User’s Guide is available here


Contents Summary

Folder Description
apps Redirects to Example applications repositories for Wireless library components
config Wireless module configuration file
docs Wireless library help documentation
drivers Driver/Firmware files for different products
utilities Contains root certs, firmware programmer/downloader


____

License Latest release Latest release date Commit activity Contributors


Follow us on Youtube Follow us on LinkedIn Follow us on Facebook Follow us on Twitter

wireless_wifi's People

Contributors

aditya-shankar avatar aethaniel avatar benpoon-microchip avatar himanshuseth-microchip avatar hr1394 avatar mratre avatar sagarmchp avatar stuart-r avatar vppillai avatar zzelevl avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

wireless_wifi's Issues

some manual scan/connect issues

I found two reasons for this.

  1. sys_wifi.c in SYS_WIFI_CreateSsdiList function
    if you make more than a scan, from the second time, g_wifiSrvcScanConfig.pSsidList points to g_scanSsidListString so the list becomes empty
if (g_wifiSrvcScanConfig.pSsidList)
 {
    memset(g_scanSsidListString, 0, sizeof(g_scanSsidListString));
    start = g_wifiSrvcScanConfig.pSsidList;'

if you agree, I have fixed this way

if (g_wifiSrvcScanConfig.pSsidList)
{
    g_wifiSrvcScanConfig.pSsidList = SYS_WIFI_SCAN_SSID_LIST;
    memset(g_scanSsidListString, 0, sizeof(g_scanSsidListString));
    start = g_wifiSrvcScanConfig.pSsidList;
  1. wdrv_pic32mzw.c in WDRV_PIC32MZW_WIDProcess
    if a scan returns an empty list, the scanInProgress flag remains true and a new scansion never starts
case DRV_WIFI_WID_GET_SCAN_RESULTS:
{
    const DRV_PIC32MZW_SCAN_RESULTS *const pScanRes = (const DRV_PIC32MZW_SCAN_RESULTS *const)pData;

    if (NULL != pScanRes)
    {
        if((NULL != pCtrl->pfBSSFindNotifyCB) && (0 == pScanRes->ofTotal))
        {
            pCtrl->pfBSSFindNotifyCB(pCtrl->handle, 0, 0, NULL);
            pCtrl->pfBSSFindNotifyCB = NULL;
            break;
        }

        if (0 == pScanRes->index)
        {
            pCtrl->scanInProgress = false;
        }	

        DRV_PIC32MZW_StoreBSSScanResult(pScanRes);
    }

if you agree, I have fixed this way

case DRV_WIFI_WID_GET_SCAN_RESULTS:
{
    const DRV_PIC32MZW_SCAN_RESULTS *const pScanRes = (const DRV_PIC32MZW_SCAN_RESULTS *const)pData;

    if (NULL != pScanRes)
    {
        if (0 == pScanRes->index)
        {
            pCtrl->scanInProgress = false;
        }				

        if((NULL != pCtrl->pfBSSFindNotifyCB) && (0 == pScanRes->ofTotal))
        {
            pCtrl->pfBSSFindNotifyCB(pCtrl->handle, 0, 0, NULL);
            pCtrl->pfBSSFindNotifyCB = NULL;
            break;
        }

        DRV_PIC32MZW_StoreBSSScanResult(pScanRes);
    }
  1. if the autoconnect flag isn't set, a manual connection never happens. I have to do like this
SYS_WIFI_CtrlMsg(sysObj.syswifi, SYS_WIFI_GETWIFICONFIG, &config, sizeof(SYS_WIFI_CONFIG));
config.staConfig.autoConnect = true;
SYS_WIFI_CtrlMsg(sysObj.syswifi, SYS_WIFI_CONNECT, &config, sizeof(SYS_WIFI_CONFIG));

This project can not work on MPLAB X IDE 6 & XC32 v 3.0.

Build fail:

info: Configuration "sam_d21_xpro_winc1500" will build with toolchain "XC32 v3.01" at "C:\Program Files\Microchip\xc32\v3.01\bin".
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\spi\drv_spi.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\spi\drv_spi_definitions.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\dev\wdrv_winc_gpio.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\dev\wdrv_winc_spi.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\bsp\nm_bsp.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\common\nm_common.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\common\nm_debug.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\driver\m2m_hif.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\driver\m2m_periph.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\driver\m2m_types.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\driver\m2m_wifi.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\driver\nmasic.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\driver\nmbus.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\driver\nmdrv.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\driver\nmspi.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\driver\m2m_ota.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\driver\m2m_ssl.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\driver\ecc_types.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\socket\m2m_socket_host_if.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\socket\socket.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\socket\netinet_in.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\spi_flash\spi_flash.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\spi_flash\spi_flash_map.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\drv\spi_flash\flexible_flash.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_api.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_assoc.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_authctx.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_bssctx.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_bssfind.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_client_api.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_common.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_custie.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_debug.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_host_file.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_httpprovctx.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_nvm.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_powersave.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_socket.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_softap.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_ssl.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_sta.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_systime.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\include\wdrv_winc_wps.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\driver.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\driver_common.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\osal\osal.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\osal\osal_definitions.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\osal\osal_impl_basic.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\clock\plib_clock.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\dmac\plib_dmac.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\eic\plib_eic.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\evsys\plib_evsys.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\nvic\plib_nvic.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\nvmctrl\plib_nvmctrl.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\port\plib_port.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\sercom\spi_master\plib_sercom0_spi_master.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\sercom\spi_master\plib_sercom_spi_master_common.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\sercom\usart\plib_sercom3_usart.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\sercom\usart\plib_sercom_usart_common.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\tc\plib_tc_common.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\tc\plib_tc3.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\debug\sys_debug.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\dma\sys_dma.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\dma\sys_dma_mapping.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\int\sys_int.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\int\sys_int_mapping.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\ports\sys_ports.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\ports\sys_ports_mapping.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\time\sys_time.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\time\sys_time_definitions.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\time\src\sys_time_local.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\system.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\system_common.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\system_module.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\device_cache.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\toolchain_specifics.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\definitions.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\device.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\user.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\configuration.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\interrupts.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\device_vectors.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\ac.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\adc.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\dac.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\dmac.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\dsu.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\eic.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\evsys.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\gclk.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\hmatrixb.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\i2s.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\mtb.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\nvmctrl.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\pac.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\pm.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\port.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\ptc.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\rtc.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\sercom.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\sysctrl.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\tc.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\tcc.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\usb.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\component\wdt.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\ac.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\adc.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\dac.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\dmac.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\dsu.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\eic.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\evsys.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\gclk.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\i2s.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\mtb.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\nvmctrl.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\pac0.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\pac1.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\pac2.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\pm.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\port.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\ptc.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\rtc.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\sbmatrix.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\sercom0.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\sercom1.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\sercom2.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\sercom3.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\sercom4.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\sercom5.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\sysctrl.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\tc3.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\tc4.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\tc5.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\tc6.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\tc7.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\tcc0.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\tcc1.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\tcc2.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\usb.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\instance\wdt.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\pio\samd21j18a.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\ATSAMD21J18A_DFP\samd21j18a.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\CMSIS\CMSIS\Core\Include\cmsis_version.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\CMSIS\CMSIS\Core\Include\cmsis_compiler.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\CMSIS\CMSIS\Core\Include\cmsis_iccarm.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\CMSIS\CMSIS\Core\Include\cmsis_gcc.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\CMSIS\CMSIS\Core\Include\cmsis_armcc.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\CMSIS\CMSIS\Core\Include\cmsis_armclang.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\CMSIS\CMSIS\Core\Include\cmsis_armclang_ltm.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\CMSIS\CMSIS\Core\Include\core_cm0plus.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\CMSIS\CMSIS\Core\Include\mpu_armv7.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\packs\CMSIS\CMSIS\Core\Include\cachel1_armv7.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\harmony-manifest-success.yml" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\ATSAMD21J18A.ld" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\spi\src\drv_spi.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\spi\src\drv_spi_local.h" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\dev\gpio\wdrv_winc_eint.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\dev\gpio\wdrv_winc_gpio.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\dev\spi\wdrv_winc_spi.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\common\nm_common.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\driver\m2m_hif.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\driver\m2m_periph.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\driver\m2m_wifi.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\driver\nmasic.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\driver\nmbus.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\driver\nmdrv.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\driver\nmspi.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\driver\m2m_ota.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\driver\m2m_ssl.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\socket\socket.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\socket\inet_ntop.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\socket\inet_addr.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\spi_flash\spi_flash.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\drv\spi_flash\flexible_flash.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\osal\wdrv_winc_osal.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_assoc.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_authctx.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_bssctx.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_bssfind.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_custie.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_host_file.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_httpprovctx.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_nvm.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_powersave.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_socket.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_softap.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_ssl.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_sta.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_systime.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\driver\winc\wdrv_winc_wps.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\clock\plib_clock.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\dmac\plib_dmac.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\eic\plib_eic.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\evsys\plib_evsys.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\nvic\plib_nvic.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\nvmctrl\plib_nvmctrl.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\port\plib_port.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\sercom\spi_master\plib_sercom0_spi_master.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\sercom\usart\plib_sercom3_usart.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\peripheral\tc\plib_tc3.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\platform\platform_sercom.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\stdio\xc32_monitor.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\dma\sys_dma.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\int\src\sys_int.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\system\time\src\sys_time.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\initialization.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\interrupts.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\exceptions.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\startup_xc32.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\libc_syscalls.c" which does not exist in the disk. The make process might not build correctly.
warning: Configuration "sam_d21_xpro_winc1500" refers to file "C:\H3\wireless_wifi\apps\serial_bridge\firmware\src\config\sam_d21_xpro_winc1500\tasks.c" which does not exist in the disk. The make process might not build correctly.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.