변수2 C# Form간의 Data 공유.. //GraphicForm 생성자 private Form1 wnd = null; public GraphicForm(Form1 wnd) { InitializeComponent(); this.wnd = wnd; } public GraphicForm m_graphic = null; private GraphicForm_Show() { if (!m_graphic.Created) { m_graphic = new GraphicForm(this); m_graphic.MdiParent = this; m_graphic.Show(); } } 2010. 8. 9. IAR EEPROM 변수 선언 __no_init __eeprom char erc_buf[KEYSU][eFULL+1]; __no_init __eeprom char *ep; 앞에 __no_init 를 붙여줘야된다.. 없을경우엔 Error[e133]: The output format intel-standard cannot handle multiple address spaces. Use format variants (-y -O) to specify which 이런 에러메세지를 만날수 있다. ROM-Output 파일 만들기위해선 Lingker에 ExtraOption-> -Ointel-extended,(XDATA)=.eep 을 삽입해주면 된다. 2009. 3. 6. 이전 1 다음