Angus Gratton
9496fda662
RMT driver: Rename rmt_set_evt_intr_en to rmt_set_tx_thr_intr_en
...
Closes github #115 : https://github.com/espressif/esp-idf/issues/115
2016-12-28 10:17:56 +11:00
Angus Gratton
948a2ba23a
uart driver: Remove invalid UART_BITRATE_115200 enum from example
...
Closes github #92 https://github.com/espressif/esp-idf/issues/92
2016-12-28 10:17:56 +11:00
Angus Gratton
6395081503
uart driver: Set type of uart_driver_install queue param
...
Closes github #91 https://github.com/espressif/esp-idf/issues/91
2016-12-28 10:17:56 +11:00
Angus Gratton
45571b3c38
LEDC driver: Use ledc_channel_t for all channel arguments
...
Closes github #54 : https://github.com/espressif/esp-idf/issues/54
2016-12-28 10:17:56 +11:00
Angus Gratton
ff1fa8a323
gpio driver: Fix gpio_set_level validation of gpio_num argument
...
Closes #125 https://github.com/espressif/esp-idf/issues/125
2016-12-28 10:17:56 +11:00
Wangjialin
9dbdab5c9a
driver: uart
...
1. add uart rx buffer data length API
2. add uart pattern detect event
3. add uart example code
4. modify uart_isr_register
5. modify uart.rst
6. fix parity err event and frame err event.
2016-12-21 11:55:53 +08:00
Jeroen Domburg
4854dcf0eb
Get rid of old interrupt example code
2016-12-19 18:48:08 +08:00
Wangjialin
b00b75db7e
driver: sigma-delta
...
1. add sigma-delta code and example.
2. add gpio output signal in io matrix.
Squashed commits:
[a25e7d4] minor changes for doc
[6a03a1e] minor changes on comments and doc.
[97dd9e4] Add doc.
update index.rst
change example index
2016-12-18 17:20:17 +08:00
Ivan Grokhotkov
609d852834
deep sleep: power down RTC peripherals in EXT1 sleep
2016-12-16 14:30:27 +08:00
Ivan Grokhotkov
35115885c5
deep sleep: add API to control power down
2016-12-16 14:30:27 +08:00
Ivan Grokhotkov
3b854fe46a
deep sleep: implement wake up using ULP, EXT0, EXT1 sources
...
This adds the following APIs to enable various wakeup sources:
- esp_deep_sleep_enable_timer_wakeup
- esp_deep_sleep_enable_ulp_wakeup
- esp_deep_sleep_enable_ext0_wakeup
- esp_deep_sleep_enable_ext1_wakeup
And an API to start deep sleep:
- esp_deep_sleep_start
2016-12-16 14:30:27 +08:00
Ivan Grokhotkov
71daf49e39
driver/rtc_io: improve header comments
...
Fix descriptions of return values, fix typos, use upper case for abbreviations.
2016-12-16 14:30:27 +08:00
Jeroen Domburg
1037a50abe
Convert DOS line ends to Unix line ends in drivers
2016-12-15 09:45:40 +08:00
Jeroen Domburg
3ed16758c0
Update examples in uart.h
2016-12-15 09:44:21 +08:00
Jeroen Domburg
baa6a477c5
Fix example code, add chapter to docs about interrupts and multicore issues
2016-12-08 14:42:00 +08:00
Jeroen Domburg
cb9ef19d3b
Also add intr_alloc magic to rtc code
2016-12-08 12:57:57 +08:00
Jeroen Domburg
2c34ab3374
Mark some interrupts that are now allocated dynamically as free, add int handle param documentation, add local ints test
2016-12-08 12:39:33 +08:00
Jeroen Domburg
ae8c37e0b6
Add disabling/enabling of shared interrupt, add testcase for interrupts
2016-12-08 12:39:33 +08:00
Jeroen Domburg
32fa94935d
Changes according to merge request
2016-12-08 12:39:33 +08:00
Jeroen Domburg
655fd2986a
Add interrupt allocation scheme / interrupt sharing. Also modifies drivers and examples. Also allows interrupts
...
to be marked specifically as having a handler that's all in IRAM.
2016-12-08 12:39:33 +08:00
Ivan Grokhotkov
a1542421c0
Merge branch 'bugfix/pcnt_driver' into 'master'
...
Fixing some syntax errors in pcnt
See merge request !278
2016-12-08 10:48:05 +08:00
Chu Shu Chen
b1db2721dc
driver: add rtc module and bugfix gpio32 gpio33
...
feature(rtc_module):add rtc module
1. add rtc io control API (pull,output and input)
2. add touch pad API (touch pad read and interrupt)
3. add adc1 API (the max width is 12 Bits and support attenuation)
4. add hall sensor API (support hall sensor read )
5. add dac API (the width is 8 Bits)
bugfix(gpio):gpio32 and gpio33 can not output and input
the gpio32 and gpio33 is initialize by librtc.a,and gpio_config not initialize the gpio as
digital gpio.they can not output and input,when users use gpio32 or gpio33.And there are some problems
about others driver ,when they use gpio32 or gpio33 as matrix.
2016-12-07 15:56:13 +08:00
me-no-dev
3cd9cb8911
Fix comment in the header
2016-12-06 02:10:35 +02:00
me-no-dev
2dbae95a7e
Fix wrong assignment of channel and unit in pcnt_unit_config
2016-12-06 01:11:32 +02:00
Wangjialin
a5ad8090cf
Merge branch 'master' into driver_merge_tmp/merge_timer
...
# Conflicts:
# docs/index.rst
2016-11-25 01:07:19 +08:00
Wang Jia Lin
35ae2cd1a5
Merge branch 'driver_merge_tmp/merge_pcnt' into 'master'
...
driver: PCNT
1. add PCNT module in periph_ctrl.c/.h
2. add description of PCNT status in pcnt_struct.h
3. add PCNT driver code
4. add PCNT example code.
See merge request !229
2016-11-25 00:41:16 +08:00
Ivan Grokhotkov
79482bbee7
uart: use same argument names in get/set functions
...
https://github.com/espressif/esp-idf/issues/105
2016-11-24 13:56:18 +08:00
Wangjialin
f97f198c9d
driver: improve pulse counter code
...
1. Modify some comments in pcnt.h
2. Modify api/pcnt.rst
3. Improve example code.
4. Add status definitions in pcnt_reg.h
2016-11-24 12:01:21 +08:00
Wangjialin
a97e076dec
add pcnt.rst
2016-11-23 19:07:30 +08:00
Wangjialin
6db1482cd5
Merge branch 'master' into driver_merge_tmp/merge_pcnt
...
# Conflicts:
# components/driver/include/driver/periph_ctrl.h
2016-11-23 18:15:54 +08:00
Wangjialin
7571b8c2e4
driver: PCNT
...
minor changes
2016-11-23 18:10:45 +08:00
Wangjialin
c533099e08
driver: timer
...
1. minor modifications
2. use TIMG_WDT_INT_ENA_M instead of BIT(2) in wdt.c
3. add doc/api/timer.rst
2016-11-23 17:23:21 +08:00
Wangjialin
a3c4a70ba3
driver: add hardware timer code.
...
1. add timer driver code
2. add timer example code
3. replace api for enable interrupt in task_wdt.c
2016-11-23 02:15:27 +08:00
Wangjialin
235eceea06
rmt: add documentation
2016-11-22 01:44:23 +08:00
Wangjialin
6a1dbc3f1c
add RMT driver and example
2016-11-22 00:57:19 +08:00
Wangjialin
1cc1d9d721
driver: Add PCNT code
...
1. add PCNT module in periph_ctrl.c/.h
2. add description of PCNT status in pcnt_struct.h
3. add PCNT driver code
4. add PCNT example code.
2016-11-21 18:17:07 +08:00
Ivan Grokhotkov
13d4734399
docs: fix Doxygen warnings, fail CI build on Doxygen warnings
2016-11-16 22:44:22 +08:00
Wangjialin
13b81debb3
Merge branch 'master' into bugfix/uart_isr_switch_context
2016-11-16 14:51:36 +08:00
Wangjialin
37cbb0bdea
driver: bugfix/fix uart parity and frame error bug
...
1. modify definition for uart_parity_t
2. fix bugs in uart interrupt handler for parity err and frame err.
2016-11-16 14:44:06 +08:00
Wangjialin
d7599ab16d
driver: fix header file warnings for Doxygen.
2016-11-16 01:31:02 +08:00
Wangjialin
a8a51a2786
bugfix/uart_isr_switch_context: add switching context in uart ISR.
...
1. add switching context in uart ISR
2. remove duplicated #include in uart.c
3. modify example in uart.h(will later add examples to idf/examples)
2016-11-15 13:47:51 +08:00
Jeroen Domburg
64a2f0ee0b
Amend gpio driver to work around SoC bug with some pullups/pulldowns in the GPIO peripheral; mark existing function that does not always work as deprecated
2016-11-15 10:29:52 +08:00
Wangjialin
6fb2515a5d
Merge branch 'master' into driver_merge_tmp/merge_uart
...
# Conflicts:
# components/esp32/include/esp_err.h
2016-11-10 11:57:19 +08:00
Ivan Grokhotkov
f142da3ced
driver/gpio: fix interrupt type names in comment block
...
https://github.com/espressif/esp-idf/issues/56
2016-11-08 20:17:08 +08:00
Wangjialin
e452278194
Minor changes for driver
...
1. remove "\n" when calling ESP_LOGX APIs.
2. modify uart_event_t for uart rx data.
3. use MICRO for uart inverse value
4. add uart_tx_data_t for internal tx function.
2016-11-07 14:16:52 +08:00
Wangjialin
3ec23f1b83
Modify as Angus's suggestion:
...
1. Set XXX_TAG static, remove extern XXX_TAG in uart.h/ledc.h/gpio.h
2. I removed uart_set/get_print_port() functions, these functions are not well tested, I removed them for now.
3. Modify some function names for uart_read/write_bytes
4. Modify uart_write_bytes and uart_write_bytes_with_break.
2016-11-04 12:52:34 +08:00
Wangjialin
15474b9b7e
Merge branch 'master' into driver_merge_tmp/merge_uart
2016-11-04 02:56:41 +08:00
Wangjialin
a6b3be6734
Update UART driver
...
1. fix bug in ringbuffer.c:
When return an dummy item, free_ptr might exceed rd_ptr, so the write_ptr would overwrite rd_ptr in this case.
2. Delete UART tx task in buffer mode. UART ISR will copy the data from tx buffer to fifo.
2016-11-04 02:48:25 +08:00
Wangjialin
9ed7c4f8bc
fix ringbuffer bug.
2016-11-03 23:30:54 +08:00
Wangjialin
8282c73ac2
debug ring buffer error.
2016-11-03 18:28:36 +08:00
Wangjialin
e1f0c98ef5
Modify gpio.h and ledc.h
2016-11-01 22:35:42 +08:00
Wangjialin
8d6b782327
Modify UART driver:
...
1. Add a ring buffer for UART TX.
If the buffer size is set to zero, driver will not use a buffer. But we need a task to send data from buffer to fifo. I tried directly copy data in ISR, but the code looked too long for ISR.
2. Modify the format in uart.h
2016-11-01 09:22:09 +08:00
Krzysztof
f05cd619f4
Sample cleaning of markup
2016-11-01 01:20:04 +08:00
Wangjialin
74aff2b9d2
Update UART driver
...
1. Use esp_log API for LEDC and GPIO code.
2. Modify some API return value.
3. Add ledc_set_pin() for LEDC
4. Modify typo in uart.h
Questions: In uart driver ISR handler, I used xxxFromISR , like xSemaphoreGiveFromISR, do those FromISR functions need to be put in IRAM?
2016-10-24 15:57:23 +08:00
Wangjialin
288f4f63f0
Add UART driver
...
1. add uart.h and uart.c
2. add ESP_ERR_TIMEOUT in esp_err.h
3. add UART AHB FIFO address in uart_reg.h
4. modify xRingbufferSendFromISR return value in ringbuffer.c
5. add #include "soc/gpio_sig_map.h" in gpio.h
2016-10-24 09:17:10 +08:00
Wangjialin
e523a2532a
Modify LEDC driver
...
1. configure LEDC timer saparately
2. add peripher_crtl.c/.h
To enable the peripheral modules, we have to set/clear the control register in dport_reg.h.
These bits are disabled by default and they are all in a same register, so we need to add a lock on that.
3. add include esp_err.h in gpio.h
2016-09-28 23:20:34 +08:00
Wangjialin
516ab36bbe
Minor modification
...
1. add new line between typedefs
2. for param check functions, return bool if they are true/false
2016-09-28 12:04:15 +08:00
Wangjialin
ec45e1a593
components/driver: modify LEDC driver
...
1. modify ledc struct header: combine high speed and low speed channel
2. modify ledc init function
3. add timer control api
4. modify typo in ledc.h
2016-09-26 09:56:03 +08:00
Wangjialin
3f1c5c4d5b
1. add a macro 'GPIO_IS_VALID_OUTPUT_GPIO' and 'GPIO_IS_VALID_OUTPUT_GPIO' in gpio.h
...
2. add PIN_FUNC_GPIO in io_mux_reg.h, put the io_mux_regs in order
3. use braces around single line if statements in ledc.c and gpio.c
2016-09-23 14:52:26 +08:00
Wangjialin
85cd269ef8
add ledc driver code
2016-09-23 09:21:37 +08:00
Wangjialin
92569082c6
Remove some macros and declarations that are already in rom/gpio.h
2016-09-21 12:08:42 +08:00
Wangjialin
f7b10745be
Remove mutex from GPIO driver code. Replace uint8_t/uint16_t with uint32_t
2016-09-21 09:51:37 +08:00
Wangjialin
2be163f6cc
add gpio driver code
2016-09-19 17:33:21 +08:00