]> granicus.if.org Git - esp-idf/commit
Merge branch 'bugfix/rmt_mem_struct' into 'master'
authorIvan Grokhotkov <ivan@espressif.com>
Tue, 8 Nov 2016 10:47:53 +0000 (18:47 +0800)
committerIvan Grokhotkov <ivan@espressif.com>
Tue, 8 Nov 2016 10:47:53 +0000 (18:47 +0800)
commit414e5ce1d53b30b52639bd29d0b4e3f35f32cf69
tree4d743ed7a132f79853f7e7b4822caf7ceb8a2922
parent0aca2506fc18bfb0ec09b6f552f955cc9a7343c5
parent1418f886eb5c04913923daaf89c36b85daea59b9
Merge branch 'bugfix/rmt_mem_struct' into 'master'

Only fix rmt_mem_t struct definition error.

Modify the struct definition according to technical_reference_manual.
Tested.

```
typedef volatile struct {
    struct {
        union {
            struct {
                uint32_t duration0:    15;
                uint32_t level0:       1;
                uint32_t duration1:    15;
                uint32_t level1:       1;
            };
            uint32_t val;
        } data[64];
    } chan[8];
} rmt_mem_t;
```

See merge request !186