2020-03-02から1日間の記事一覧

桃屋三種の配合比率

たまむすび, TBSラジオ, 2020年3月2日(月曜日) カンニング竹山が推奨 穂先メンマ やわらぎ(辣油味) | 桃屋オンラインショップを50% 辛そうで辛くない少し辛いラー油 | 桃屋オンラインショップを20% きざみにんにく | 桃屋オンラインショップを30%

内蔵EEPROMから何かを読み出す

pp.421ff. #include <avr/io.h> #include <avr/eeprom.h> #include "USART.h" int main(){ initUSART(); eeprom_update_byte((uint8_t *)0, 9); // [0]番地に0d9を書き込む。 eeprom_update_word((uint16_t *)1, 0xabcd); // [1]~[2]番地に0xabcdを書き込む。 char str[] = "The wor</avr/eeprom.h></avr/io.h>…

内蔵EEPROMに何かを書き込む

pp.415ff. //#include <avr/io.h> #include <avr/eeprom.h> int main(){ eeprom_update_byte((uint8_t *)0, 9); // [0]番地に0d9を書き込む。 eeprom_update_word((uint16_t *)1, 0xabcd); // [1]~[2]番地に0xabcdを書き込む。 char str[] = "The work of telegraph offices, especi</avr/eeprom.h></avr/io.h>…