summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/src/picc/main_openpicc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/firmware/src/picc/main_openpicc.c b/firmware/src/picc/main_openpicc.c
index 2b2e56a..74700f8 100644
--- a/firmware/src/picc/main_openpicc.c
+++ b/firmware/src/picc/main_openpicc.c
@@ -45,6 +45,8 @@ static u_int8_t pwm_freq_idx = 0;
static u_int8_t load_mod = 0;
+#define DA_BASELINE 192
+
void _init_func(void)
{
/* low-level hardware initialization */
@@ -64,7 +66,7 @@ void _init_func(void)
opicc_usbapi_init();
AT91F_PIO_CfgInput(AT91C_BASE_PIOA, OPENPICC_PIO_BOOTLDR);
- da_comp_carr(64);
+ da_comp_carr(DA_BASELINE);
}
static void help(void)
@@ -86,7 +88,7 @@ static void help(void)
int _main_dbgu(char key)
{
- static u_int8_t poti = 64;
+ static u_int8_t poti = DA_BASELINE;
static u_int8_t pll_inh = 1;
static u_int8_t ssc_mode = 1;
static u_int8_t sync_enabled = 0;
personal git repositories of Harald Welte. Your mileage may vary