Skip to content
Snippets Groups Projects
Select Git revision
  • fc28ffb4ac1230bb932d63fa285a8fb09eb67fd4
  • main default protected
  • pippin/media_framework
  • release/1.1.1
  • release/1.1.0
  • fpletz/flake
  • sec/auto-nick
  • rahix/flow3rseeds
  • compressor
  • sec/blinky
  • pippin/uhm_flash_access_bust
  • release/1.0.0
  • fm_fix2
  • fm_fix
  • pippin/make_empty_drawlists_skip_render_and_blit
  • pressable_bugfix
  • moon2_gay_drums
  • moon2_applications
  • schneider/application-remove-name
  • anon/webflasher
  • pippin/display-python-errors-on-display
  • v1.1.1
  • v1.1.0
  • v1.1.0+rc1
  • v1.0.0
  • v1.0.0+rc6
  • v1.0.0+rc5
  • v1.0.0+rc4
  • v1.0.0+rc3
  • v1.0.0+rc2
  • v1.0.0+rc1
31 results

machine_pwm.c

Blame
  • Forked from flow3r / flow3r firmware
    Source project has a limited visibility.
    lexerstr.c 1.14 KiB
    
    #include "misc.h"
    #include "mpconfig.h"
    #include "qstr.h"
    #include "lexer.h"
    
    typedef struct _mp_lexer_str_buf_t {
        uint free_len;              // if > 0, src_beg will be freed when done by: m_free(src_beg, free_len)
        const char *src_beg;        // beginning of source
        const char *src_cur;        // current location in source
        const char *src_end;        // end (exclusive) of source
    } mp_lexer_str_buf_t;
    
    STATIC unichar str_buf_next_char(mp_lexer_str_buf_t *sb) {
        if (sb->src_cur < sb->src_end) {
            return *sb->src_cur++;
        } else {
            return MP_LEXER_CHAR_EOF;
        }
    }
    
    STATIC void str_buf_free(mp_lexer_str_buf_t *sb) {
        if (sb->free_len > 0) {
            m_free((char*)sb->src_beg, sb->free_len);
        }
        m_del_obj(mp_lexer_str_buf_t, sb);
    }
    
    mp_lexer_t *mp_lexer_new_from_str_len(qstr src_name, const char *str, uint len, uint free_len) {
        mp_lexer_str_buf_t *sb = m_new_obj(mp_lexer_str_buf_t);
        sb->free_len = free_len;
        sb->src_beg = str;
        sb->src_cur = str;
        sb->src_end = str + len;
        return mp_lexer_new(src_name, sb, (mp_lexer_stream_next_char_t)str_buf_next_char, (mp_lexer_stream_close_t)str_buf_free);
    }