-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start adding support for Apollo3 devices
Signed-off-by: Carey Sonsino <[email protected]>
- Loading branch information
Showing
3 changed files
with
157 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
// This provides the functionality for Apollo3 devices. | ||
|
||
#if defined(AM_PART_APOLLO3) | ||
|
||
#include <ap3_types.h> | ||
#include <am_hal_gpio.h> | ||
|
||
#include "Adafruit_NeoPixel.h" | ||
|
||
// The timing method used to control the NeoPixels | ||
// TODO: Implement something better (interrupts, DMA, etc) | ||
#define PIN_METHOD_FAST_GPIO | ||
|
||
/*! | ||
@brief Unset the NeoPixel output pin number. | ||
@param p Arduino pin number (-1 = no pin). | ||
*/ | ||
void Adafruit_NeoPixel::apollo3UnsetPin(uint16_t pin) { | ||
#if defined(PIN_METHOD_FAST_GPIO) | ||
// Unconfigure the pin for Fast GPIO. | ||
am_hal_gpio_fastgpio_disable(pin); | ||
#endif | ||
} | ||
|
||
/*! | ||
@brief Set the NeoPixel output pin number. | ||
@param p Arduino pin number (-1 = no pin). | ||
*/ | ||
void Adafruit_NeoPixel::apollo3SetPin(uint16_t pin) { | ||
#if defined(PIN_METHOD_FAST_GPIO) | ||
// Configure the pin to be used for Fast GPIO. | ||
am_hal_gpio_fastgpio_disable(pin); | ||
am_hal_gpio_fastgpio_clr(pin); | ||
|
||
am_hal_gpio_fast_pinconfig((uint64_t)0x1 << pin, | ||
g_AM_HAL_GPIO_OUTPUT, 0); | ||
// uint32_t ui32Ret = am_hal_gpio_fast_pinconfig((uint64_t)0x1 << pin, | ||
// g_AM_HAL_GPIO_OUTPUT, 0); | ||
// if (ui32Ret) { | ||
// am_util_stdio_printf( | ||
// "Error returned from am_hal_gpio_fast_pinconfig() = .\n", ui32Ret); | ||
// } | ||
#endif | ||
} | ||
|
||
// Note - The timings used below are based on the Arduino Zero, | ||
// Gemma/Trinket M0 code. | ||
|
||
/*! | ||
@brief Transmit pixel data in RAM to NeoPixels. | ||
@note The current design is a quick hack and should be replaced with | ||
a more robust timing mechanism. | ||
*/ | ||
void Adafruit_NeoPixel::apollo3Show( | ||
uint16_t pin, uint8_t *pixels, uint32_t numBytes, boolean is800KHz) { | ||
|
||
uint8_t *ptr, *end, p, bitMask; | ||
ptr = pixels; | ||
end = ptr + numBytes; | ||
p = *ptr++; | ||
bitMask = 0x80; | ||
|
||
#if defined(PIN_METHOD_FAST_GPIO) | ||
|
||
// disable interrupts | ||
am_hal_interrupt_master_disable(); | ||
|
||
#ifdef NEO_KHZ400 // 800 KHz check needed only if 400 KHz support enabled | ||
if(is800KHz) { | ||
#endif | ||
for(;;) { | ||
am_hal_gpio_fastgpio_set(pin); | ||
//asm("nop; nop; nop; nop; nop; nop; nop; nop;"); | ||
asm("nop; nop; nop; nop; nop; nop; nop; nop; nop; nop; nop; nop;"); | ||
if(p & bitMask) { | ||
asm("nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop; nop;"); | ||
am_hal_gpio_fastgpio_clr(pin); | ||
} else { | ||
am_hal_gpio_fastgpio_clr(pin); | ||
asm("nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop; nop;"); | ||
} | ||
if(bitMask >>= 1) { | ||
asm("nop; nop; nop; nop; nop; nop; nop; nop; nop;"); | ||
} else { | ||
if(ptr >= end) break; | ||
p = *ptr++; | ||
bitMask = 0x80; | ||
} | ||
} | ||
#ifdef NEO_KHZ400 | ||
} else { // 400 KHz bitstream | ||
// NOTE - These timings may need to be tweaked | ||
for(;;) { | ||
am_hal_gpio_fastgpio_set(pin); | ||
//asm("nop; nop; nop; nop; nop; nop; nop; nop; nop; nop; nop;"); | ||
asm("nop; nop; nop; nop; nop; nop; nop; nop; nop; nop; nop; nop; nop; nop; nop;"); | ||
if(p & bitMask) { | ||
asm("nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop;"); | ||
am_hal_gpio_fastgpio_clr(pin); | ||
} else { | ||
am_hal_gpio_fastgpio_clr(pin); | ||
asm("nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop;"); | ||
} | ||
asm("nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop; nop; nop; nop; nop; nop;" | ||
"nop; nop; nop; nop; nop; nop; nop; nop;"); | ||
if(bitMask >>= 1) { | ||
asm("nop; nop; nop; nop; nop; nop; nop;"); | ||
} else { | ||
if(ptr >= end) break; | ||
p = *ptr++; | ||
bitMask = 0x80; | ||
} | ||
} | ||
} | ||
|
||
// re-enable interrupts | ||
am_hal_interrupt_master_enable(); | ||
|
||
#endif // NEO_KHZ400 | ||
#endif // PIN_METHOD_FAST_GPIO | ||
} | ||
|
||
#endif // AM_PART_APOLLO3 |