123
Fork of WizFi250Interface_1 by
WizFi250/WizFi250_ifc.cpp
- Committer:
- cliff1
- Date:
- 2017-09-21
- Revision:
- 3:f78b0e66ed67
- Parent:
- 0:e3dc9e54a15b
File content as of revision 3:f78b0e66ed67:
/* WizFi250
* Copyright (c) 2015 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "WizFi250.h"
bool WizFi250::startup(void)
{
reset();
cmdAT();
if( cmdMECHO(false) == -1) return false;
//if( cmdMECHO(true) == -1) return false;
if(_cts != NULL && _rts != NULL)
{
if( cmdUSET(_baud,"HW") == -1) return false;
}
else
{
if( cmdUSET(_baud,"N") == -1) return false;
}
wait_ms(1000);
if( cmdAT() == -1) return false;
return true;
}
bool WizFi250::reset(void)
{
_reset = 0;
wait_ms(500);
_reset = 1;
return true;
}
