aboutsummaryrefslogtreecommitdiffstats
ModeNameSize
-rw-r--r--.clang-format267logstatsplain
-rw-r--r--.dockerignore139logstatsplain
-rw-r--r--.editorconfig114logstatsplain
d---------.github45logstatsplain
-rw-r--r--.gitignore591logstatsplain
-rw-r--r--.travis.yml3821logstatsplain
d---------.travis169logstatsplain
-rw-r--r--Brewfile111logstatsplain
-rw-r--r--CHANGELOG25658logstatsplain
-rw-r--r--COPYING762logstatsplain
-rw-r--r--CodeOfConduct3195logstatsplain
-rw-r--r--CodingReadme14823logstatsplain
-rw-r--r--Dockerfile853logstatsplain
-rw-r--r--Makefile31654logstatsplain
-rw-r--r--README.md20298logstatsplain
d---------backends486logstatsplain
d---------examples364logstatsplain
d---------frontends258logstatsplain
d---------kernel884logstatsplain
d---------libs167logstatsplain
d---------manual1913logstatsplain
d---------misc285logstatsplain
d---------passes351logstatsplain
d---------techlibs436logstatsplain
d---------tests716logstatsplain
72' href='#n372'>372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
/*
    ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio

    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.
*/

/**
 * @file    spi.c
 * @brief   SPI Driver code.
 *
 * @addtogroup SPI
 * @{
 */

#include "hal.h"

#if (HAL_USE_SPI == TRUE) || defined(__DOXYGEN__)

/*===========================================================================*/
/* Driver local definitions.                                                 */
/*===========================================================================*/

/*===========================================================================*/
/* Driver exported variables.                                                */
/*===========================================================================*/

/*===========================================================================*/
/* Driver local variables and types.                                         */
/*===========================================================================*/

/*===========================================================================*/
/* Driver local functions.                                                   */
/*===========================================================================*/

/*===========================================================================*/
/* Driver exported functions.                                                */
/*===========================================================================*/

/**