Table of Contents

12. Cvičení: Práce na projektu

Obsahem cvičení je samostatná práce na projektu a konzultace (projektu, témat z přednášek…).

Studenti z probíhajícího cvičení mají přednostní přístup k deskám.

Ukázková kód použití otočných voličů

Výhoda následujícího použití informace změně polohy otočných voličů:

#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <time.h>
#include <unistd.h>
#include <termios.h>            //termios, TCSANOW, ECHO, ICANON
 
#include "mzapo_parlcd.h"
#include "mzapo_phys.h"
#include "mzapo_regs.h"
#include "kote.c"
 
unsigned short *fb;
 
void draw_pixel(int x, int y, unsigned short int color) {
  if (color!=65535) {
    fb[(x%480)+480*(y%320)] = color;
  }
}
 
 
int main(int argc, char *argv[]) {
  unsigned char *parlcd_mem_base, *mem_base;
  int i,j, ptr;
  fb  = (unsigned short *)malloc(320*480*2);
 
  printf("Hello world\n");
 
  parlcd_mem_base = map_phys_address(PARLCD_REG_BASE_PHYS, PARLCD_REG_SIZE, 0);
  if (parlcd_mem_base == NULL)
    exit(1);
 
  mem_base = map_phys_address(SPILED_REG_BASE_PHYS, SPILED_REG_SIZE, 0);
  if (mem_base == NULL)
    exit(1);
 
  parlcd_hx8357_init(parlcd_mem_base);
 
  struct timespec loop_delay;
  loop_delay.tv_sec = 0;
  loop_delay.tv_nsec = 150 * 1000 * 1000;
  int xx=240, yy=160;
  uint32_t r = *(volatile uint32_t*)(mem_base + SPILED_REG_KNOBS_8BIT_o);
  int last_red = ((r>>16)&0xff);
  int last_blue = (r&0xff);
  while (1) {
 
    r = *(volatile uint32_t*)(mem_base + SPILED_REG_KNOBS_8BIT_o);
    if ((r&0x7000000)!=0) {
      break;
    }
    int red = ((r>>16)&0xff);
    int blue = (r&0xff);
    int diff_red = red - last_red;
    last_red = red;
    if (diff_red<-128) {
	diff_red+=256;
    }
    if (diff_red>128) {
	diff_red-=256;
    }
    xx+=diff_red/2;	
    if (xx<0) {
	xx=0;
    }
    if (xx>350) {
	xx=350;
    }
    int diff_blue = blue - last_blue;
    last_blue = blue;
    if (diff_blue<-128) {
	diff_blue+=256;
    }
    if (diff_blue>128) {
	diff_blue-=256;
    }
    yy+=diff_blue/2;
    if (yy<0) {
	yy=0;
    }
    if (yy>240) {
	yy=240;
    }
    printf("xx %i Diff red %i (%i)  yy %i diff blue %i (%i)\n", xx, diff_red, red, yy, diff_blue, blue);
 
    for (ptr = 0; ptr < 320*480 ; ptr++) {
        fb[ptr]=0u;
    }
    for (j=0; j<kote_png_height; j++) {
      for (i=0; i<kote_png_width; i++) {
        draw_pixel(i+xx,j+yy,kote_png[i+j*kote_png_width]);
      }
    }
 
    parlcd_write_cmd(parlcd_mem_base, 0x2c);
    for (ptr = 0; ptr < 480*320 ; ptr++) {
        parlcd_write_data(parlcd_mem_base, fb[ptr]);
    }
 
    clock_nanosleep(CLOCK_MONOTONIC, 0, &loop_delay, NULL);
  }
 
  parlcd_write_cmd(parlcd_mem_base, 0x2c);
  for (ptr = 0; ptr < 480*320 ; ptr++) {
    parlcd_write_data(parlcd_mem_base, 0);
  }
 
  printf("Goodbye world\n");
 
  return 0;
}

Ukázková kód použití vláken