mikroSDK Reference Manual
hal_spi_master.h
Go to the documentation of this file.
1/****************************************************************************
2**
3** Copyright (C) 2024 MikroElektronika d.o.o.
4** Contact: https://www.mikroe.com/contact
5**
6** This file is part of the mikroSDK package
7**
8** Commercial License Usage
9**
10** Licensees holding valid commercial NECTO compilers AI licenses may use this
11** file in accordance with the commercial license agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and The MikroElektronika Company.
14** For licensing terms and conditions see
15** https://www.mikroe.com/legal/software-license-agreement.
16** For further information use the contact form at
17** https://www.mikroe.com/contact.
18**
19**
20** GNU Lesser General Public License Usage
21**
22** Alternatively, this file may be used for
23** non-commercial projects under the terms of the GNU Lesser
24** General Public License version 3 as published by the Free Software
25** Foundation: https://www.gnu.org/licenses/lgpl-3.0.html.
26**
27** The above copyright notice and this permission notice shall be
28** included in all copies or substantial portions of the Software.
29**
30** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
31** OF MERCHANTABILITY, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
32** TO THE WARRANTIES FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
33** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
34** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
35** OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
36** OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
37**
38****************************************************************************/
44#ifndef _HAL_SPI_MASTER_H_
45#define _HAL_SPI_MASTER_H_
46
47#ifdef __cplusplus
48extern "C"{
49#endif
50
51#include "hal_target.h"
52#include "generic_pointer.h"
53#include "hal_ll_spi_master.h"
54#include "hal_gpio.h"
55
70
83
93
132
151
161
209
257err_t hal_spi_master_open( handle_t *handle, bool hal_obj_open_state );
258
275
292
308
327 hal_spi_master_config_t *config );
328
350
372
406err_t hal_spi_master_write( handle_t handle, uint8_t * __generic_ptr write_data_buffer,
407 size_t write_data_length );
408
436err_t hal_spi_master_read( handle_t handle, uint8_t *read_data_buffer,
437 size_t read_data_length );
438
484err_t hal_spi_master_write_then_read( handle_t handle, uint8_t *write_data_buffer,
485 size_t length_write_data,
486 uint8_t *read_data_buffer,
487 size_t length_read_data );
488
505err_t hal_spi_master_close( handle_t *handle );
506
507 // halspimastergroup
508 // halgroup
509 // pergroup
510
511#ifdef __cplusplus
512}
513#endif
514
515#endif // _HAL_SPI_MASTER_H_
516// ------------------------------------------------------------------------- END
err_t hal_spi_master_close(handle_t *handle)
Close SPI Master HAL context object.
void hal_spi_master_select_device(hal_pin_name_t chip_select)
Select SPI Slave device.
err_t hal_spi_master_set_mode(handle_t *handle, hal_spi_master_config_t *config)
Set desired SPI communication mode.
void hal_spi_master_set_default_write_data(handle_t *handle, hal_spi_master_config_t *config)
Set SPI Master default ( dummy ) write data.
err_t hal_spi_master_set_speed(handle_t *handle, hal_spi_master_config_t *config)
Set desired SPI communication speed.
err_t hal_spi_master_open(handle_t *handle, bool hal_obj_open_state)
Open the SPI Master HAL object on selected pins.
err_t hal_spi_master_write(handle_t handle, uint8_t *__generic_ptr write_data_buffer, size_t write_data_length)
Write byte to SPI bus.
err_t hal_spi_master_read(handle_t handle, uint8_t *read_data_buffer, size_t read_data_length)
Read byte from SPI bus.
void hal_spi_master_deselect_device(hal_pin_name_t chip_select)
Deselect SPI Slave device.
void hal_spi_master_set_chip_select_polarity(hal_spi_master_chip_select_polarity_t polarity)
Set desired chip select polarity.
void hal_spi_master_configure_default(hal_spi_master_config_t *config)
Configure SPI Master configuration structure with default values.
err_t hal_spi_master_write_then_read(handle_t handle, uint8_t *write_data_buffer, size_t length_write_data, uint8_t *read_data_buffer, size_t length_read_data)
Perform a sequence of SPI Master writes immediately followed by a SPI Master read.
This file contains all the functions prototypes for the GPIO library.
hal_spi_master_mode_t
Definition hal_spi_master.h:75
@ HAL_SPI_MASTER_MODE_0
Definition hal_spi_master.h:76
@ HAL_SPI_MASTER_MODE_1
Definition hal_spi_master.h:77
@ HAL_SPI_MASTER_MODE_2
Definition hal_spi_master.h:78
@ HAL_SPI_MASTER_MODE_3
Definition hal_spi_master.h:79
@ HAL_SPI_MASTER_MODE_DEFAULT
Definition hal_spi_master.h:81
hal_spi_master_err_t
Definition hal_spi_master.h:155
@ HAL_SPI_MASTER_MODULE_ERROR
Definition hal_spi_master.h:158
@ HAL_SPI_MASTER_SUCCESS
Definition hal_spi_master.h:156
@ HAL_SPI_MASTER_ERROR
Definition hal_spi_master.h:159
@ HAL_SPI_MASTER_WRONG_PINS
Definition hal_spi_master.h:157
hal_spi_master_chip_select_polarity_t
Definition hal_spi_master.h:88
@ HAL_SPI_MASTER_CHIP_SELECT_POLARITY_ACTIVE_HIGH
Definition hal_spi_master.h:90
@ HAL_SPI_MASTER_CHIP_SELECT_POLARITY_ACTIVE_LOW
Definition hal_spi_master.h:89
@ HAL_SPI_MASTER_CHIP_SELECT_DEFAULT_POLARITY
Definition hal_spi_master.h:91
HAL target macros and typedefs.
int32_t err_t
Definition hal_target.h:64
hal_ll_pin_name_t hal_pin_name_t
Definition hal_target.h:60
HAL SPI Master init configuration structure, consisted of the following fields :
Definition hal_spi_master.h:124
uint32_t speed
Definition hal_spi_master.h:129
uint8_t default_write_data
Definition hal_spi_master.h:125
hal_pin_name_t mosi
Definition hal_spi_master.h:128
hal_pin_name_t sck
Definition hal_spi_master.h:126
hal_pin_name_t miso
Definition hal_spi_master.h:127
hal_spi_master_mode_t mode
Definition hal_spi_master.h:130
SPI Master level handle.
Definition hal_spi_master.h:65
handle_t * hal_spi_master_handle
Definition hal_spi_master.h:66
handle_t * drv_spi_master_handle
Definition hal_spi_master.h:67
bool init_state
Definition hal_spi_master.h:68
SPI master HAL context structure, consisted of the following fields :
Definition hal_spi_master.h:147
hal_spi_master_config_t config
Definition hal_spi_master.h:149
handle_t handle
Definition hal_spi_master.h:148