#include <revolution/ax.h> void AXInit(void);
None.
None.
Among other things, the AXInit function initializes the AX library, starts the audio DSP task, and starts AI-DMA.
This function must be called before any other AX functions. The application must ensure that the AI library has been initialized before calling this function.
Also note that AX requires the use of the default stack for AI (in other words, the AIInit function must be called with a NULL argument).
Note: This function calls the AIRegisterDMACallback function internally. Because of this, any AI DMA interrupt callback set using the AIRegisterDMACallback function before this function was called will be overwritten by the AX callback. If you are using an original AI DMA interrupt callback, be sure to set it using AIRegisterDMACallback only after calling this function.
2008/12/26 Added a note about the AI DMA interrupt callback.
2006/10/24 Deleted a description related to AR and ARQ.
2006/03/01 Initial version.
CONFIDENTIAL