19 lines
218 B
C++
19 lines
218 B
C++
/*
|
|
* Start.cpp
|
|
*
|
|
* Created on: May 20, 2022
|
|
* Author: Gabriel
|
|
*/
|
|
|
|
#include "main.h"
|
|
#include "Start.hpp"
|
|
|
|
#include "AUDIO.h"
|
|
|
|
void Start(){
|
|
AUDIO_OUT_Init(2, 100, 48000);
|
|
while(1){
|
|
|
|
}
|
|
}
|