- compile clean for gcc
git-svn-id: http://moon:8086/svn/software/trunk/libsrc/radio@10 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
+6
-6
@@ -9,12 +9,12 @@
|
||||
// --------------------------------------------------------------
|
||||
// Types
|
||||
// --------------------------------------------------------------
|
||||
typedef struct _clock_t
|
||||
typedef struct _sample_clock_t
|
||||
{
|
||||
uint32_t reload;
|
||||
int32_t count;
|
||||
|
||||
} clock_t;
|
||||
} sample_clock_t;
|
||||
|
||||
typedef struct _lead_lag_filter_t
|
||||
{
|
||||
@@ -59,10 +59,10 @@ typedef struct _timing_corrector_t
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void ClockInit(clock_t *pObj, uint32_t divide);
|
||||
uint32_t ClockIsTick(clock_t *pObj, uint32_t do_advance);
|
||||
void ClockAdvance(clock_t *pObj);
|
||||
void ClockSetPhase(clock_t *pObj, int32_t phase);
|
||||
void ClockInit(sample_clock_t *pObj, uint32_t divide);
|
||||
uint32_t ClockIsTick(sample_clock_t *pObj, uint32_t do_advance);
|
||||
void ClockAdvance(sample_clock_t *pObj);
|
||||
void ClockSetPhase(sample_clock_t *pObj, int32_t phase);
|
||||
|
||||
void STRGardnerInit(str_t *pObj);
|
||||
radio_float_t STRGardnerProcess(str_t *pObj, cpx_t x);
|
||||
|
||||
Reference in New Issue
Block a user