123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /*
- * main.c
- *
- * Copyright 2024 dh33ex <dh33ex@riseup.net>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
- * MA 02110-1301, USA or visit <http://www.gnu.org/licenses/>.
- *
- *
- */
- #include <msp430g2553.h>
- #include "pcd8544_lcd.h"
- int main(void) {
- WDTCTL = WDTPW | WDTHOLD;
- /* use 1 MHz */
- if (CALBC1_1MHZ != 0xFF) {
- DCOCTL = 0;
- BCSCTL1 = CALBC1_1MHZ;
- DCOCTL = CALDCO_1MHZ;
- }
- PCD8544 disp;
- disp.rst = BIT0;
- disp.ss = BIT1;
- disp.dc = BIT2;
- disp.bl = BIT3;
- LCD_init(&disp);
- LCD_backlight(&disp, 1);
- LCD_clear(&disp);
- LCD_set_address(&disp, 0, 0);
- LCD_write(&disp, "test");
- while (1) {
- __delay_cycles(1000000);
- LCD_write(&disp, ".");
- }
- return 0;
- }
|