runtime: fix dds declarations

This commit is contained in:
Sebastien Bourdeauducq 2016-03-09 18:27:51 +08:00
parent f0b0b1bac7
commit de37487a5c
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ void dds_init(long long int timestamp, int bus_channel, int channel)
static unsigned int continuous_phase_comp[CONFIG_DDS_CHANNEL_COUNT];
static void dds_set_one(long long int now, long long int ref_time,
unsigned int bus_channel, unsigned int channel,
int bus_channel, int channel,
unsigned int ftw, unsigned int pow, int phase_mode, unsigned int amplitude)
{
unsigned int channel_enc;

View File

@ -54,10 +54,10 @@ enum {
PHASE_MODE_TRACKING = 2
};
void dds_init(long long int timestamp, int channel);
void dds_init(long long int timestamp, int bus_channel, int channel);
void dds_batch_enter(long long int timestamp);
void dds_batch_exit(void);
void dds_set(long long int timestamp, int channel,
void dds_set(long long int timestamp, int bus_channel, int channel,
unsigned int ftw, unsigned int pow, int phase_mode, unsigned int amplitude);
#endif /* __DDS_H */