Skip to content
Snippets Groups Projects
Select Git revision
  • 7e7039b53ccc3c02815823bd95fa50da2955b5c1
  • master default protected
2 results

qstrdefsport.h

Blame
  • qstrdefsport.h 1.66 KiB
    /*
     * This file is part of the Micro Python project, http://micropython.org/
     *
     * The MIT License (MIT)
     *
     * Copyright (c) 2014 Damien P. George
     *
     * Permission is hereby granted, free of charge, to any person obtaining a copy
     * of this software and associated documentation files (the "Software"), to deal
     * in the Software without restriction, including without limitation the rights
     * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
     * copies of the Software, and to permit persons to whom the Software is
     * furnished to do so, subject to the following conditions:
     *
     * The above copyright notice and this permission notice shall be included in
     * all copies or substantial portions of the Software.
     *
     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
     * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
     * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
     * THE SOFTWARE.
     */
    
    // qstrs specific to this port
    
    Q(help)
    
    // pyb module
    Q(pyb)
    Q(info)
    Q(freq)
    Q(millis)
    Q(elapsed_millis)
    Q(micros)
    Q(elapsed_micros)
    Q(delay)
    Q(udelay)
    Q(sync)
    Q(hard_reset)
    
    Q(esp)
    Q(connect)
    Q(disconnect)
    Q(scan)
    Q(status)
    Q(STAT_IDLE)
    Q(STAT_CONNECTING)
    Q(STAT_WRONG_PASSWORD)
    Q(STAT_NO_AP_FOUND)
    Q(STAT_CONNECT_FAIL)
    Q(STAT_GOT_IP)
    
    // Pin class
    Q(Pin)
    Q(init)
    Q(mode)
    Q(pull)
    Q(value)
    Q(low)
    Q(high)
    Q(IN)
    Q(OUT_PP)
    Q(OUT_OD)
    Q(PULL_NONE)
    Q(PULL_UP)
    Q(PULL_DOWN)