FreeCalypso > hg > freecalypso-hwlab
view lunalcd/initmain.c @ 113:7e7eab9ea7c5
fc-simtool: add EF_PNN and EF_OPL symbolic names
these files need to be read in order to identify MVNO SIMs
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 26 Jan 2021 07:02:52 +0000 |
parents | cdf2c99e5025 |
children |
line wrap: on
line source
#include <stdio.h> #include <stdlib.h> main(argc, argv) char **argv; { if (argc != 2) { fprintf(stderr, "usage: %s output-mode\n", argv[0]); exit(1); } set_output_mode(argv[1]); lcd_init_seq(); exit(0); }