mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-27 20:04:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| // Copyright 2015-2019 Espressif Systems (Shanghai) PTE LTD
 | |
| //
 | |
| // Licensed under the Apache License, Version 2.0 (the "License");
 | |
| // you may not use this file except in compliance with the License.
 | |
| // You may obtain a copy of the License at
 | |
| //
 | |
| //     http://www.apache.org/licenses/LICENSE-2.0
 | |
| //
 | |
| // Unless required by applicable law or agreed to in writing, software
 | |
| // distributed under the License is distributed on an "AS IS" BASIS,
 | |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| // See the License for the specific language governing permissions and
 | |
| // limitations under the License.
 | |
| 
 | |
| #pragma once
 | |
| #include <esp_types.h>
 | |
| #include <esp_err.h>
 | |
| 
 | |
| /** Context used by the ``esp_serial_slave_link`` component.
 | |
|  */
 | |
| struct essl_dev_t {
 | |
|     void* args;
 | |
| 
 | |
|     esp_err_t (*init)(void* ctx, uint32_t wait_ms);
 | |
| 
 | |
|     esp_err_t (*wait_for_ready)(void *ctx, uint32_t wait_ms);
 | |
|     esp_err_t (*update_tx_buffer_num)(void *ctx, uint32_t wait_ms);
 | |
|     esp_err_t (*update_rx_data_size)(void *ctx, uint32_t wait_ms);
 | |
|     esp_err_t (*send_packet)(void *ctx, const void* start, size_t length, uint32_t wait_ms);
 | |
|     esp_err_t (*get_packet)(void *ctx, void* out_data, size_t size, uint32_t wait_ms);
 | |
|     esp_err_t (*write_reg)(void *ctx, uint8_t addr, uint8_t value, uint8_t* value_o, uint32_t wait_ms);
 | |
|     esp_err_t (*read_reg)(void *ctx, uint8_t add, uint8_t *value_o, uint32_t wait_ms);
 | |
|     esp_err_t (*wait_int)(void *ctx, uint32_t wait_ms);
 | |
|     esp_err_t (*clear_intr)(void* ctx, uint32_t intr_mask, uint32_t wait_ms);
 | |
|     esp_err_t (*get_intr)(void* ctx, uint32_t* intr_raw, uint32_t *intr_st, uint32_t wait_ms);
 | |
|     esp_err_t (*set_intr_ena)(void* ctx, uint32_t ena_mask, uint32_t wait_ms);
 | |
|     esp_err_t (*get_intr_ena)(void* ctx, uint32_t* ena_mask_o, uint32_t wait_ms);
 | |
|     esp_err_t (*send_slave_intr)(void* ctx, uint32_t intr_mask, uint32_t wait_ms);
 | |
| 
 | |
|     uint32_t (*get_tx_buffer_num)(void *ctx);
 | |
|     uint32_t (*get_rx_data_size)(void *ctx);
 | |
|     void (*reset_cnt)(void *ctx);
 | |
| };
 | |
| 
 | |
| typedef struct essl_dev_t essl_dev_t;
 | 
