Ignore:
Timestamp:
10/26/07 21:26:08 (6 years ago)
Author:
andrew
Message:

Sanitise AT+COPS output, implement AT+CSCB.
Hook up phonesim to qemu's configure & Makefile, add a usage note.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/host/qemu-neo1973/hw/neo1973.c

    r3276 r3290  
    104104} 
    105105 
     106#ifdef INTERNAL_MODEM 
    106107static void neo_modem_switch_tick(void *opaque) 
    107108{ 
     
    109110    modem_enable(s->modem, 1); 
    110111} 
     112#endif 
    111113 
    112114static void neo_modem_switch(void *opaque, int line, int level) 
     
    381383static void neo_gsm_setup(struct neo_board_s *s) 
    382384{ 
     385#ifdef INTERNAL_MODEM 
    383386    s->modem = modem_init(); 
    384387    s->modem_timer = qemu_new_timer(vm_clock, neo_modem_switch_tick, s); 
    385388 
    386389    s3c_uart_attach(s->cpu->uart[0], s->modem); 
     390#endif 
    387391} 
    388392 
Note: See TracChangeset for help on using the changeset viewer.