blob: 2389212b69e5c043be4a8e6994eb6cd36b405a25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "led_driver_process.h"
#include "led_driver_config.h"
#include <stdint.h>
// ----------------------------------------------------------------------------
//
// ----------------------------------------------------------------------------
void LEDDriverProcessFromISR ( void )
{
LED_ST_PIN_RESET;
SPI_I2S_SendData16 ( LED_SPIx, (uint16_t)0 );
}
|