Skip to content
Snippets Groups Projects
Select Git revision
  • 103d12a877f09e5d812f8c9c1fbf13ddbea4f78c
  • wip-bootstrap default
  • dualcore
  • ch3/leds
  • ch3/time
  • master
6 results

qstrdefsport.h

Blame
  • qstrdefsport.h 1.95 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(socket)
    Q(connect)
    Q(disconnect)
    Q(scan)
    Q(status)
    Q(getaddrinfo)
    Q(send)
    Q(sendto)
    Q(recv)
    Q(recvfrom)
    Q(listen)
    Q(accept)
    Q(bind)
    Q(settimeout)
    Q(setblocking)
    Q(setsockopt)
    Q(close)
    Q(protocol)
    Q(onconnect)
    Q(onrecv)
    Q(onsent)
    Q(ondisconnect)
    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)
    
    // RTC
    Q(RTC)
    Q(datetime)
    Q(memory)
    
    // utime
    Q(utime)
    Q(localtime)
    Q(mktime)
    Q(sleep)
    Q(time)